Help needed sorting a text file.

I'm trying to simply open a file, which is a text file of a list of names, then sort that file, the print the sorted file. The problem is that I keep getting this error
Exception in thread "main" java.util.NoSuchElementException: No line found
     at java.util.Scanner.nextLine(Unknown Source)
     at pro.NamesFile.main(NamesFile.java:36)
Which is at this line[b] words= new String(inputFile.nextLine());
It's not reading any lines from the file and I can't figure out why.
Here's the rest of my code:
public class NamesFile {
     public static void main(String[] args) throws FileNotFoundException {
          Scanner inputFile;
        inputFile = new Scanner(new File("C:/Documents and Settings/Cougar/Desktop/New Folder (2)/names.txt"));
        String name;
        inputFile.next();
        String[] words = new String[100];
        while (inputFile.hasNext()) {
             name = inputFile.nextLine();     
             for (int i = 0; i < words.length; i++) {
                  words[i] = new String(inputFile.nextLine());
        Sort2.insertionSort(words);
             for (int index=0; index < words.length; index++)
                System.out.print(words[index].toString()+"\t");
}Here the sort algoritm I'm using, it the insertion sort one.
public static void selectionSort (String[] list)
           int min;
           String temp;
           for (int index = 0; index < list.length-1; index++)
              min = index;
              for (int scan = index+1; scan < list.length; scan++)
                 if (list[scan].compareTo(list[min]) < 0)
                    min = scan;
              // Swap the values
              temp = list[min];
              list[min] = list[index];
              list[index] = temp;
        public static void insertionSort (String[] list)
           for (int index = 1; index < list.length; index++)
                String key = list[index];
              int position = index;
              //  Shift larger values to the right
              while (position > 0 && key.compareTo(list[position-1]) < 0)
                 list[position] = list[position-1];
                 position--;
              list[position] = key;
        }I'm still relativly new at this, so forgive me if there's something obvious that I'm missing.And thanks for any help anybody can give me.

You haven't gotten to running the sort yet, so I didn't even check that the sort routine is correct.
Your problem is:
You say inputFile.hasNext() once, and then you read 1 line from it. Then, in your 'for' loop, you read 100 lines from it. So, you always attempt to read 101 lines, even if the file is shorter than that.
You should call "hasNext" before each call to "readLine". Also, you probably want a "while" loop, instead of a "for" loop, since you don't know how many words you will have. I assume you are expecting 100 or less (based on your array size).
Two more notes:
1. Don't do "new String(inputFile.readLine())". All you need is:
words= inputFile.nextLine();
2. You don't need toString here:
System.out.print(words[index].toString()+"\t");words[index] is already a String, and concatenating the "\t" to words[index] would create a String, anyway, no matter what type words[index] was. And, calling:
System.out.print(words[index]);would also automatically call "toString", even if words[index] were not a String.
You could avoid creation of new Strings by:
System.out.print(words[index]);
System.out.print("\t");Just make sure you add braces around them, if both lines are the body of a 'for' loop. You should also make the second 'for' loop into a 'while' loop, using a counter that you update as you read the lines--so that you don't process the "null" elements of the array. You also need to account for null elements in your sort method.

Similar Messages

  • Help needed in reading text file to database table

    Hello experts,
    i have to insert the values from the column of this text file and insert them in my database table.
    I have done a few file to table insertions but i'm having some trouble with this one.
    Any suggestions plz
    thanks
    liab_report      1.00                                                                                                                              Page: 1
    CDC:00537 / Mon Jun-21-2010                           LIABILITY REPORT                               Mon Jun-21-2010 22:06:26
    DRAW    1; SET    1;  November 7, 2009
                         TOTAL       PAID ON         TOTAL    EXPIRED ON         TOTAL    FRAC   OUTSTANDING
                       WINNERS      06/21/10          PAID      06/21/10       EXPIRED   ROUND
      DIVISION          AMOUNT        AMOUNT        AMOUNT        AMOUNT        AMOUNT  AMOUNT        AMOUNT
        Div1              0.00          0.00          0.00          0.00          0.00    0.00          0.00
        Div2         701040.00          0.00     660146.00          0.00      40894.00    0.00          0.00
        Div3        1444128.00          0.00    1330056.00          0.00     114072.00    0.00          0.00
        Div4        4711900.00          0.00    3889700.00          0.00     822200.00    0.00          0.00
                    6857068.00          0.00    5879902.00          0.00     977166.00    0.00          0.00
    DRAW    2; SET    1;  November 14, 2009
                         TOTAL       PAID ON         TOTAL    EXPIRED ON         TOTAL    FRAC   OUTSTANDING
                       WINNERS      06/21/10          PAID      06/21/10       EXPIRED   ROUND
      DIVISION          AMOUNT        AMOUNT        AMOUNT        AMOUNT        AMOUNT  AMOUNT        AMOUNT
        Div1              0.00          0.00          0.00          0.00          0.00    0.00          0.00
        Div2         817817.00          0.00     817817.00          0.00          0.00    0.00          0.00
        Div3        1687405.00          0.00    1611742.00          0.00      75663.00    0.00          0.00
        Div4        3402100.00          0.00    3034200.00          0.00     367900.00    0.00          0.00
                    5907322.00          0.00    5463759.00          0.00     443563.00    0.00          0.00
    DRAW    3; SET    1;  November 21, 2009
                         TOTAL       PAID ON         TOTAL    EXPIRED ON         TOTAL    FRAC   OUTSTANDING
                       WINNERS      06/21/10          PAID      06/21/10       EXPIRED   ROUND
      DIVISION          AMOUNT        AMOUNT        AMOUNT        AMOUNT        AMOUNT  AMOUNT        AMOUNT
        Div1              0.00          0.00          0.00          0.00          0.00    0.00          0.00
        Div2         779933.00          0.00     769804.00          0.00      10129.00    0.00          0.00
        Div3        1605548.00          0.00    1525104.00          0.00      80444.00    0.00          0.00
        Div4        4891700.00          0.00    4256800.00          0.00     634000.00    0.00        900.00
                    7277181.00          0.00    6551708.00          0.00     724573.00    0.00        900.00

    Plz clarify whether u want to load text file as a file into database or value of this text file into database. If values are to be loaded from this text file, U can better format the text file and use SQL loader to load the file into database. By formatting the database, i mean remove the unnecessary headings and characters, kee only the values to be loaded idelimited by ' '(space) or ','(comma). Create a control file and load it into the target table.

  • Need to read text file content and have to display it in multiline text box

    dear all,
    Need to read text file content and have to display it in multiline text box.
    actually im new to file handling. i have tried up to get_line and put_line.
    in_file := TEXT_IO.FOPEN ('D:\SAMPLE.txt', 'r');
    TEXT_IO.GET_LINE (in_file,linebuf);
    i dont know how to assign this get_line function to text item
    pls help me in this regards,

    Simply write:
    in_file := TEXT_IO.FOPEN ('D:\SAMPLE.txt', 'r');
    TEXT_IO.GET_LINE (in_file,linebuf);
    :block2.t1 := chr(10)||:block2.t1||chr(10)||linebuf;
    chr(10) --> is for new line character

  • Help with inputting from text file.

    Okay, been struggling with this for a couple days and I could really use some help.
    I need to input text one line at a time into String[] text, I'm reading from a file called "textfile.txt" and I want to store the result
    String[] text = { first_line, second_line, third_line, fourth_line...........etc}
    This works now:
    //code
    String[] test =
         { "1 2, 3 4, 5 6"
         for (int i = 0; i < test.length; i++) {
         Graph g = new Graph(test);
    // end code
    But that of course reads "1 2, 3 4, 5 6" from the code, and not from a text file. My StringTokenizer looks for a "," and makes that the end of the token, so I need to add a "," after each line as well.
    In other words, I need to turn the text file :
    "1 2
    3 4
    5 6"
    into :
    "1 2, 3 4, 5 6"
    These are just numbers to test of course, the real text file I need to input has hundreds of lines.
    Any help would be appreciated, thank you.

    I'm fairly lost. I understand that you need to read a file, and that file contains many lines which each contain a pair of numbers. But then you say (a) that you need to create an array of Strings and (b) that you need to store the result. And there's this mysterious StringTokenizer in there as well. You seem to be suggesting some solution that concatenates all the lines together, with commas between them, so that the StringTokenizer can then go through that concatenation and break it apart into the original pieces.
    Okay, here's some code that reads through a file and makes an array of Strings, one entry per line:BufferedReader in = new BufferedReader(new FileReader("textfile.txt"));
    String data = null;
    List inputs = new ArrayList();
    while ((data = in.readLine()) != null) {
      inputs.add(data);
    in.close();
    String[] lines = new String[0];
    lines = (String[]) inputs.toArray(lines);Untested, and exception handling and so forth omitted. I leave it to you to decide what to do with that array of Strings.
    PC&#178;

  • Help needed on properties of files attached to the transaction-crmd_order

    Hi Experts,
    My requirement is to hide the file attached to the transaction(crmd_order).
    For this, I got the information about the file from cl_crm_documents=> get_info method and the FLAG VARIABLE used for hiding th file is KW_SYSTEM_FLAGS.
    But if I try to set this flag by passing this as a import paramter(as properties) to cl_crm_documents=> change_properties method, I am getting 'SKWF_IO E003KW_SYSTEM_FLAGS' error.I am getting this error in cl_skwf_io_util=>check_properties_authority method. It says that the hidden property is a restricted one and we are not supposed to change it.
    But I am in need of changing this. Can anyone help me out in this?
    Regards
    Athikrish.

    Al_Barrs wrote:
    THR AUG th?I have some picture, graphic and text files that have in some way been saved in the Creative Player2 format on my computer. I need to associate these files with another program so that I can reoer the images and text. Can anyone tell me what program I can use to associate these Creative Player2 files to revover them, or if there is some other way to open them... Desperate for help!!! Thanks in advance. Al [email][email protected]][email protected][/url]?
    What player are you referring to? Is it Creative PlayCenter 2? Playcenter doesn't save any special extension to the files. It uses all the standard extension. eg. jpg,txt.... Not sure what you are trying to say.

  • How to sort this text file ?

    hi all
    i have a text file that contains archlinux package information int he following formate:
    File:alpine-2.00-1-i686.pkg.tar.gz     3623 KB     09/05/2008     10:53:00 PM
    File:alsa-lib-1.0.18-1-i686.pkg.tar.gz     474 KB     11/08/2008     04:46:00 PM
    File:alsa-oss-1.0.17-1-i686.pkg.tar.gz     50 KB     09/28/2008     04:25:00 PM
    File:alsa-utils-1.0.18-1-i686.pkg.tar.gz     1047 KB     11/08/2008     04:46:00 PM
    what is the easiest way to sort the order according to different criteria such as file size, creation time, name etc
    i'm thinking of using a database software such as sqlite.
    if this is the correct direction to go, can anyone show me some hints on how i should go about to accomplish this task ?
    thanks in advance

    after some digging
    it seems awk can do the trick
    i found some code snippets
    i'll try it later
    but i'm still curious about doing this using sqlite and the SQL language
    like can i create a database from a formated text file? etc
    so anyone has some comments on this, you are still welcome
    Last edited by elflord (2008-11-15 17:56:18)

  • JTable - Help with updating a Text File

    Hi all,
    I've been fighting this for a few days. I am trying to update a Text File with my JTable.... Displaying the data works great but when I try to edit a cell/field on the gui, I'm bombing out...... My text fiel is a small user control file with Id, Name,
    Date, etc etc with the fields delimited with a "|".... I have built an Abstract Data Model (see below).... and I think my problem is in the setValueAt method.......
    Thanks so much in advance!!!!
    Mike
    code:
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.event.*;
    import java.io.*;
    import java.util.*;
    public class DataFileTableModel extends AbstractTableModel {
    protected Vector data;
    protected Vector columnNames ;
    protected String datafile;
    public DataFileTableModel(String f){
    datafile = f;
    initVectors();
    public void initVectors() {
    String aLine ;
    data = new Vector();
    columnNames = new Vector();
    try {
    FileInputStream fin = new FileInputStream(datafile);
    BufferedReader br = new BufferedReader(new InputStreamReader(fin));
    // extract column names
    StringTokenizer st1 =
    new StringTokenizer(br.readLine(), "|");
    while(st1.hasMoreTokens())
    columnNames.addElement(st1.nextToken());
    // extract data
    while ((aLine = br.readLine()) != null) { 
    StringTokenizer st2 =
    new StringTokenizer(aLine, "|");
    while(st2.hasMoreTokens())
    data.addElement(st2.nextToken());
    br.close();
    catch (Exception e) {
    e.printStackTrace();
    public int getRowCount() {
    return data.size() / getColumnCount();
    public int getColumnCount(){
    return columnNames.size();
    public String getColumnName(int columnIndex) {
    String colName = "";
    if (columnIndex <= getColumnCount())
    colName = (String)columnNames.elementAt(columnIndex);
    return colName;
    public Class getColumnClass(int columnIndex){
    return String.class;
    public boolean isCellEditable(int rowIndex, int columnIndex) {
    return true;
    public Object getValueAt(int rowIndex, int columnIndex) {
    return (String)data.elementAt( (rowIndex * getColumnCount()) + columnIndex);
    public void setValueAt(Object aValue, int rowIndex, int columnIndex) {
    Vector rowVector=(Vector)data.elementAt(rowIndex);
    rowVector.setElementAt(aValue, columnIndex);
    fireTableCellUpdated(rowIndex,columnIndex);
    // return;
    }

    No, the DefaultDataModel does not update the physical data file. It is just used to store the data as you type in the table cells.
    The code from above is used to read data from a file and populate the DataModel.
    Now you need to write another routine that will take the data from the DataModel and write it to your file. I have never actually done this but I think the code would be something like:
    int rows = table.getModel().getRowCount();
    int columns = table.getModel().getColumnCount();
    //  Write column headers
    for (int j = 0; j < columns; j++)
         TableColumn column = table.getColumnModel().getColumn(j);
            Object o = column.getHeaderValue();
         writeToFile( o.toString() + "|" );
    writeToFile( "\n" );
    // Write each row
    for (int i = 0, i < rows; i++)
        for (int j = 0, j < columns; j++)
            Object o = table.getValueAt(i, j);
            writeToFile( o.toString + "|" );
        writeToFile( "\n" );
    }If you need to update the file whenever data in a cell changes, then you could extend the DefaultTableModel and override the setValueAt() method to also write the contents of the DataModel to a file. But this is a lot of overhead since it rewrite the entire file for every cell change.

  • Help needed to write control file.

    Hi Guys,
    i need to write one control file to upload data from .txt file to oracle table.
    .txt file data contains like this
    2006041110:40:22
    2006041111:30:42
    2006041210:40:22
    i need to upload this data into date column in oracle table.
    please help me to write control file for this requirement.
    Thanks for your help and time

        data1        "to_date(:data1, 'YYYYMMDDHH24:MI:SS')"

  • Help needed on Transforming input File to EDI Format

    I have an input flat file in one location. Using BizTalk, i need to pick that file from that Recieve location, transform it to EDI format and send it to Destination location.
    Now, when I place input file in the "Recieve location", it is being processed and it is erased from recieve location. But I am not able to see the output in the Destination location.
    And when i query it in BizTalk Administration console, the state is "Completed" without any errors.
     Any guidance/suggestions are appreciated. Thanks in advance.

    Hi all, I have just collated everything and have put it in my words below..Please
    let me know your valuable inputs as I am struck in this point from more than a week.
    I need to fetch an input flat file (.txt format) from the "Receive location" and I am supposed to transform that to an EDI message X12 format and send it to Destination folder.
    I have set up the receive port and send port configurations in the Admin Console, have created the Trading Partners, agreement and other settings.
    The problem I am facing : Now, when I place input file in the "Receive location", it is being processed and I am able to pick up the file from the input folder
    but I am not able to figure out why the file is not being processed and sent to the destination folder.. (If I query for All In Progress instances, suspended instances or Running instances : I am not getting any results and the below grid is always empty).
    And when i query it in Biz-talk Administration console for Tracked instances, the Receive pipeline component's state is "Completed" without any errors.
    And I am not using any Orchestration in between..
    Thank you all in advance....

  • Help! Reading a text file in a JAR

    How do I read a text file in a jar? (NON-applet).
    Following doesn't work:
    File f = new File("res\\dictionaryuk.txt");
    Neither does this:
    InputStream in = this.getClass().getResourceAsStream("res\\dictionary.txt");
    (I read somewhere else here that one should use resources instead of files in a JAR, but I'm not certain about that, or why?)
    It's not the pathname because I've tried everything.
    "res\\dictionaryuk.txt"
    "res/dictionaryuk.txt"
    "\\res\\dictionaryuk.txt"
    "\\dictionaryuk.txt"
    "dictionaryuk.txt"
    ...you name it
    And yes, the text file IS in the JAR.
    Any suggestions? Sample code?

    Okay, here is a quick example of how to do it that I tested and works...
    I get the same values for the ZipEntry method and the InputStream.available method, but the available method is used for slightly different purposes, and may not always return the full size of the file (I have seen some instances where the value returned was always 0). Anyway, here it goes:
    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.jar.JarFile;
    import java.util.zip.ZipEntry;
    public class JARFileReading
         public static void main(String[] args)
              String fileName = "res/TestApplet.html";
              InputStream is = JARFileReading.class.getResourceAsStream(fileName);
              try
                   System.out.println("Input Stream.avaliable: "+is.available());
                   if (is != null)
                        is.close();
              } catch (IOException e)
                   e.printStackTrace();
              File jarFile = new File("JarFile.jar");
              if (!jarFile.exists()) System.exit(0);
              JarFile theJar = null;
              try
                   theJar = new JarFile(jarFile);
                   ZipEntry theFile = theJar.getEntry(fileName);
                   System.out.println("Zip Entry.getSize: "+theFile.getSize());
                   System.out.println("Zip Entry.getCompressedSize: "+theFile.getCompressedSize());
                   is = theJar.getInputStream(theFile);
                   System.out.println("JarFile.getInputStream.available: "+is.available());
                   if (theJar != null)
                        theJar.close();
                   if (is != null)
                        is.close();
              } catch (IOException e1)
                   e1.printStackTrace();
    }

  • Help needed badly Insert text data from xml files into tables

    Hi all, I have asked to do insertion of text from a xml file into tables upon receiving using pro*c. i've done quite an amount of research on xml parser in c but there wasn't much information for mi to use for implementation...
    Guys don't mind helping me to clarify few doubts of mine...
    1. Where can i get the oracle xml parser libs? Is it included when i installed oracle 8i?
    2. Is there any tutorials or help files for xml parser libs where i can read up?
    I need the xml parser to recognise the tags, followed by recognising the text after the tags.
    eg. xml format
    <studentID> 0012 </studentID>
    <student> john </student>
    <studentID> 0013 </studentID>
    <student> mary </student>
    text willl be inserted into tables like this:
    studentID | student
    0012 | john
    0013 | mary
    by the way i'm using oracle 8i on HP-UX. Thanks in advance.

    I can answer one of of your questions at least
    1. Where can i get the oracle xml parser libs? Is it included when i installed oracle 8i?You need the XML XDK. You can use http://www.oracle.com/technology/tech/xml/xdkhome.html as your starting point. I believe the 9i version works for 8i.
    I have no pro*c experience so I can't offer any other suggestions regarding how to do this in pro*c.

  • Urgent Help Needed regd reading a file in apex

    Hi all,
    I need to know how can we store content of a file in a variable or any item(like text box).
    i have a os user name in the file.
    when i use apex_util.get_file it is opening in new page.
    instead i want it to stored in a text box or any variable.
    cany any one help me on this.
    Thanks in advance,
    Srini
    Message was edited by:
    user650963

    Hi Srini,
    You can use the normal file upload functionality to do this.
    1 - Create a page region and add in a File Browse item - I'll call it P1_FILE_NAME
    2 - Create a button in that region, I'll call it P1_UPLOAD_BUTTON, and set it to branch back to the same page
    3 - Create a TextArea item - I'll call it P1_FILE_CONTENTS
    4 - Create a page process, called P1_UPLOAD_FILE, and triggered by the P1_UPLOAD_BUTTON
    5 - Use the follownig code for the process:
    declare
    v_clob clob;
    v_blob blob;
    v_varchar2 varchar2(30000);
    BEGIN
    SELECT blob_content into v_blob FROM APEX_APPLICATION_FILES where name = :P1_FILE_NAME;
    v_clob := wwv_flow_utilities.blob_to_clob(v_blob,'utf-8');
    :P1_FILE_CONTENTS := wwv_flow_utilities.clob_to_varchar2(v_clob);
    :P1_FILE_NAME := '';
    delete from APEX_APPLICATION_FILES WHERE NAME = :P1_FILE_NAME;
    END;When you select the file and click the Upload button, the file is uploaded into the APEX_APPLICATION_FILES table. The contents of the file is put into a BLOB field. The above code, converts that BLOB into a CLOB and then into a VARCHAR2 value - you can then change P1_FILE_CONTENTS to that value. Finally, the code removes the file from the table and resets the File Browse field.
    Note that this assumes that the file contains nothing but text and is no more than 30,000 characters in length.
    Andy

  • Stock book help needed - want to remove file names

    Well, I'm trying to put together my first book from Aperture and chose the Stock theme for a book of family photos and I can't for the life of me figure out how to remove the file names which appear at the bottom of every image on the pages. Anyone able to point me in the right direction?

    Hello Tom,
    There may be a quicker way, but if you just click on the "Edit layout" button (which is along the toolbar just to the right of the writing "stock book", it is the square with the dotted outline). Once you click on this, you can change all sorts of things, including the size of photo boxes and, if you just click on the file names, the filename text box will appear and you can then just hit delete.
    Hope this helps.
    Best regards
    Paul

  • Keyboard help needed for spreadsheet / excel files!

    When editing a spreadsheet / excel file, how do I keep the keyboard from switching back to numerical mode every time I press the space bar?  When entering text into a cell, I need the keyboard to stay locked in alpha mode.  I've tried both office hd and quick office, and in each one, every time I write a word and then press the space bar, it automatically goes back into the numerical keyboard mode.

    HI
    GOOD
    http://www.sapbrain.com/FunctionModules/fm_list.html
    THIS LINK CONTAINS THE SIMILAR REPORT AS PER YOUR REQUIREMNET.I HOPE THIS WILL HELP YOU TO KNOW DETAILS.
    THANKS
    MRUTYUN

  • HT204320 Help needed organsing my photo files in the new Photos program

    The new Photos application has reorganised all my picture files and displays them according to the EXIF data. As many of them were scanned from vintage sources a photograph taken in 1900 now turns up in the wrong place. In iPhoto I had the pictures sorted by file name so they were chronological. Can Photos sort my pictures according to the file name?
    I have also found that organising the pictures in Photos on my Macbook Pro does not mean they will retain that organisation when displayed on my iPad Mini 3 and iPhone6+. I have wasted so much time on this.
    I have already tried using 'EXIF Editor' and 'Photo Meta Edit' (both recommended by the Apple App Store) to change the EXIF data. After paying for these apps and spending many hours editing numerous picture files they have now spontaneously reset themselves to 1st January 1970. Aaaaaaargh. Two pictures of my great grandparents (taken in about 1900) now have a generated 'created on' dates for themselves of Monday 7th July, 2036.
    I need Photos to allow me to organise my pictures according to the file name. HELP!!!
    Geoff

    Moments in Photo are the new Events, i.e. groupings of photos sorted by date taken.
    When the iPhoto Library was first migrated to Photos there was a folder created in the sidebar titled iPhoto Events and all migrated iPhoto Events (which are now Moments) are represented by an album in that folder. To open the sidebar if it's not already open use the Option+Command+S key combination.
    There's a way to simulate events in Photos.
    When new photos are imported into the Photos library go to the Last Import smart album, select all the photos and use the File ➙ New Album menu option or use the key combination Command+N.  Name it as desired.  It will appear just above the iPhoto Events folder where you can drag it into the iPhoto Events folder
    When you click on the iPhoto Events folder you'll get a simulated iPhoto Events window.
    The downside to the simulation is that the Album/Events can only be sorted automatically by Title. But they can also be sorted manually, either in the sidebar or in the folder's window at the right.
    Ask Apple for more sorting options in Photos via https://www.apple.com/feedback/photos.html.

Maybe you are looking for

  • Escape button doesn't work in Pages only.

    I tried in other programs and it seems that it is only in Pages that the escape button doesn't work when it's in full screen. How do I fix this? Thank you! MacBook Air 2014 iOS X 10.9.5

  • NetBean Swing or Swing without NetBean

    In previous posts I have mentioned about me using BlueJ. Ive tried NetBeans IDE and find it better than BlueJ so I am using NetBeans now. One area of NetBeans uses Swing GUI components which allows you to build GUIs and creates the source code for yo

  • Import CD question?

    Hi , One thing I can never figure out is how to import a cd to say "my cd's" folder that I made within playlists. I imported a CD and all the tracks or album is only visible under "library" music but there's a ton of stuff in there like radio station

  • Is there a software for InDesign that will translate my english text into spanish text

    I have InDesign files in English text. Is there a software that will translate text into Spanish? Thanks, Sharon

  • FLEX data table serialization

    I currently use this PHP code to take table data serialized by the prototype ajax framework into an array to be inserted into a database. How can I do this in FLEX?