Work around to display large .txt files in Nanos?

I'd like to read a large .txt file on a Nano...breaking the .txt file into 4k increments isn't feasible.
Anyone know how to display a large .txt file on a Nano's screen -- from the Notes folder, or, elsewhere?
Thanks!

Hmmmm. Not so sure about that one.
Actually, it might be worth checking through the iPod + iTunesdownloads page to see if there are any useful widgets and whatnot for that there. (There's a few notes-related items showing up there too, which might work better than my suggestions about performing unnatural acts with your lyrics tags.)
http://www.apple.com/downloads/macosx/ipod_itunes/

Similar Messages

  • Can Illustrator CS4 open Illustrator CS6 files? or other work around way to open CS6 files?

    Can Illustrator CS4 open files created in CS6? or can CS6 files be converted to be opened in CS4? like CS6 InDesign can be saved in IDML files to be opened in previous versions. Or if there is any other work around ways, like save CS6 files in PDFs/eps/... so the files can be opened in CS4 and work from there. Thank you.

    Open in CS6 , file >> Save As >> Version >> CS4.

  • Large txt files, any way to open them?

    Hi, I wonder if anyone has released an update to ipod (30gig photo) that allows the Ipod to open larger TXT files than 7kb.
    / Jonis

    http://www.versiontracker.com/dyn/moreinfo/vt3/16309

  • Again: display large XML fil;e?

    Dear all,
    Any ideas to display large XML file into a JTree? This has been asked before, but still does not have any solution yet.
    I am looking for your kind help. Please help show me some codes, if you know.
    Many thanks!

    Any (close) examples for it? i've not got any - sorry
    btw, how large is large? does this mean you can't afford to store the whole XML in memory at the same time, or simply that the gui is unresponsive/resource hungry?
    asjf

  • How to read LARGE .TXT FILES from server

    i m unable to read large .txt (>100kb) files from server.
    also is there any way to store the content in mobile phone.
    PLEASE HELP as iam in dire need and only few days are left.
    thanks

    Hi
    > i m unable to read large .txt (>100kb) files from server.
    What do you mean by that? Are you trying to display that amount of text and you get an error. Are you trying to read from the server and you get there an error?
    > also is there any way to store the content in mobile phone.
    Using RMS. But be aware of the size limit specific to every phone.
    Mihai

  • How to display a .txt file?

    i would like to ask if JAVA can open and display a text file by issuing a command from my application
    is it possible to do it without using a JEditorPane?
    something else too, how can i set the background for my application to be a .jpg image?
    i searched and realised there is no such method as
    setBackground(String url)

    Try this... Note you need to add adequate exception trapping and detect special cases like the file being larger than the allocatable size of a character array (in which case you can't convert the file to a string and will need to 'display' the file in sections)...
    import java.io.*;
    public class LoadFile {
      public static String fileToString(File file) throws IOException {
        char[] fileContents = new char[(int) file.length()];
        FileReader fr = new FileReader(file);
        if(fr.read(fileContents) != fileContents.length) {
          System.err.println("There was a problem reading the file contents");
          return null;
        else return new String(fileContents);
      public static void main(String[] args) throws IOException {
        if(args.length != 1) System.err.println("Usage:\n\tjava LoadFile <filename>");
        else {
          File f = new File(args[0]);
          try {
            String s = fileToString(f);
            System.out.println(s);
          } catch(IOException e) {
            System.err.println("Whoops");
    }Hope that helps...

  • How do I view large txt files?

    Topic:
    How do I view large text files for the windows version if there is a program to allow it. Apparently Text2Ipod doesn't work for WINDOWS XP. Any help is appreciated.

    If there is such a program, odds on it'll be listed here.
    Versiontracker.

  • How would java compare to Perl for processing large txt files

    I guess what I am asking is that I write a lot of scripts in perl for processing txt files with large amounts of data in them ( >1 MB or >100K Lines of data )
    Stuff like searching for strings, deleting chuncks of the file, replacing strings, extracting strings, lines etc.
    The reason I used perl is that I was under the impression it would be the fastest for the job but I never considered java. Now I am trying to get up to speed in Java so want to use these small jobs as practice?
    Thanks ... J

    Mod (Compiled) Perl is faster than Java I think. Also, perl has been optimized for this sort of thing. Plus, if you're creating a lot of small to medium size scripts, as you mentioned, perl will be a lot easier to support for you and who ever comes after you. Stick with what you know

  • Displaying doc/txt file contents from portlet

    Hi, Can someone pls give a hint on how to do this:
    One "book" type content created, with a doc file uploaded. The "publisher " for
    this content is set to "sams".
    create a content selector which retrieves only this (content) book correctly.
    create two portlets. one portlet with above content selector inserted, displays
    the publisher name with a hyperlink.
    I want the other portlet to display the contents of the file uploaded, for this
    publisher. I could establish portlet comm. and could display other properties
    of the book such as "author/titile" on the second portlet, but want to know how
    to display the uploaded file contents.
    thanks much,
    -developer

    As far as retriving the contents of an uploaded file...
    If your XML document has been loaded into Content Management as a binary
    property, you have two options:
    a) to directly inline the content into the JSP, do something like this:
    <cm:getProperty id="node" name="binaryPropertyName" failOnError="true"
    isMultiple="false"/>
    (This assumes node holds a reference to the Content Management Node
    object (perhaps retrieved via a <cm:getNode> tag)
    b) to retrieve the value into a script variable for more processing, do
    something like this:
    <%
    Property bodyProp= (Property)node.getProperty("binaryPropertyName");
    InputStream in= node.getPropertyBytes( bodyProp.getId() );
    // dont forget to close the InputStream
    String result=null;
    InputStreamReader reader= new InputStreamReader(in);
    StringBuffer streamContents= new StringBuffer();
    char[] data= new char[8192];
    int charsRead;
    while ((charsRead = reader.read(data)) > 0 )
    streamContents.append(data, 0, charsRead);
    result= streamContents.toString();
    %>
    -Steve
    "portal developer" <[email protected]> wrote in message
    news:40ae343d$[email protected]..
    >
    Hi, Can someone pls give a hint on how to do this:
    One "book" type content created, with a doc file uploaded. The "publisher" for
    this content is set to "sams".
    create a content selector which retrieves only this (content) bookcorrectly.
    >
    create two portlets. one portlet with above content selector inserted,displays
    the publisher name with a hyperlink.
    I want the other portlet to display the contents of the file uploaded,for this
    publisher. I could establish portlet comm. and could display otherproperties
    of the book such as "author/titile" on the second portlet, but want toknow how
    to display the uploaded file contents.
    thanks much,
    -developer

  • Error uploading large txt file using GUI_UPLOAD

    Hi everyone.
    The situation is as follows: I have to process (batch input) an extremely large text file, of about 80 MB. As you can imagine, all I receive when I run my program is a dump somewhere inside the GUI_UPLOAD function routine due to excessive memory usage.
    Does anybody know of a way to deal with this kind of files? Is there any function that allows partial processing or something like that?
    Thanks a lot,
    Fernando.

    If you have to process it all at once, you can have basis FTP it to your application server and then use OPEN DATASET and TRANSFER rather than GUI_UPLOAD. this would probably be the quickest solution.
    Rob

  • Displaying a .txt file in a JTextArea

    hello everyone, i was wondering if you could help me with a problem i have.
    basically, i have to type a word in a TextField that corresponds to a filename. i.e. type in 'results' and that will correspond to a file called 'results.txt'. once i type in this word, i click a button and this will open the file 'results.txt' into a TextArea below.
    I have been working on this for several days now. I can figure out how to open the file into the TextArea, but it displays the file in there straight away. I need to make it so that the button has to be pressed first and then displays it.
    It also needs to be able to do more than just one file. I have several files in a folder and depending on what i type in the TextField depends on which file is displayed.
    I would appreciate ANY help at all on this as I am struggling quite alot.
    Thnk you in advance
    Troy

    correct me if it is a misunderstanding, but why don't you open the file (read in the content of a file in f.e. String text) , then you do a setText(text) ?
    in order to find out what was typed in you can choose getText()
    so far,
    stefan gross

  • Displaying a .txt file in a TextArea...

    hello everyone, i was wondering if you could help me with a problem i have.
    basically, i have to type a word in a TextField that corresponds to a filename. i.e. type in 'results' and that will correspond to a file called 'results.txt'. once i type in this word, i click a button and this will open the file 'results.txt' into a TextArea below.
    I have been working on this for several days now. I can figure out how to open the file into the TextArea, but it displays the file in there straight away. I need to make it so that the button has to be pressed first and then displays it.
    It also needs to be able to do more than just one file. I have several files in a folder and depending on what i type in the TextField depends on which file is displayed.
    I would appreciate ANY help at all on this as I am struggling quite alot.
    Thnk you in advance
    Troy

    below is what i have so far, but it has one error. Could u help me with that?
    import java.awt.*;
    import javax.swing.*;
    import java.io.*;
    public class NorthPanel extends JPanel
    JTextArea instruct;
    String str;
    BufferedReader br;
    public NorthPanel()
    setBackground(Color.white);
    instruct = new JTextArea(5,60);
    instruct.setLayout(new FlowLayout(FlowLayout.CENTER));
    instruct.setBorder(BorderFactory.createTitledBorder("Java Work"));
    instruct.setLineWrap(true);
    instruct.setWrapStyleWord(true);
    instruct.setEditable(false);
    readFileIntoTextArea();
    add(instruct);
    private void readFileIntoTextArea()
    try {
    File f = new File("readme.txt");
    br = new BufferedReader (new FileReader(f));
    while ((str = br.readLine()) != null)
    instruct.append(str);
    }

  • The command,"Dataloadred" is not working for a very large data file

    I have a file which size is 1.8Gb and it has 3 data channels including time channel. I tried reduced loading of the file using the command "Dataloadred" at the interval of 5. The below is the script.
    'start script----------------------------
    call Filenameget("Data","fileread")
    call DataLoadHdFile(Filedlgfile)
    call DataLoadRed("Filedlgfile","2-3",1,0,"First interval value","Start/Width/Number",10,453028984
    ,5,90605794,1)
    'end script-------------------------------------
    The following error message was displayed on the screen, which was resulted from the command, "Dataloadred()".
    "loading file (filename): Insufficient channels are available with the required channel length [3/90605794].
    To resolve this problem, I tried to allocate the channel length to 200M using the command " Chnalloc
    (). But this also resulted in the same kind error as above.
    How Can I resolve this problem and load my data by reducing. Your reply would be appreciate.
    Regards,
    Sky

    Hi,
    Please try this:
    1. Start DIAdem
    2. Open the "settings" menu
    3. Choose "Memory management..."
    4. Click the "Data matrix..." button
    5. In the dialog, set the "No. of channels" and "Channel length" to meet your requirements
    6. Click "Close"
    7. DIAdem will now restart and set up the data channels at the length you have selected
    Depending on how large you set the data matrix size, starting DIAdem may take a few minutes (depending on your computer equipment).
    An alternative to loading and reducing data sets may be the "Register File" function in the DATA window. Once you have clicked on the DATA icon, select the "File" menu and choose the "Register File..." option. Registering files will not actually load a data set, and thus speed up the data acce
    ss part of DIAdem. To learn more about this function, go to the help system and search for "Registering a file in DIAdem DATA".
    I hope this will help you. If you have any additional questions, please let me know.
    Otmar
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • Attached txt file is displayed with sapoffice intead of notepad

    Hi,
    i´ve developed a bsp page that uploads files using fm SO_DOCUMENT_INSERT_API1.
    When i try to display a txt file uploaded as above explained (with transaction FB03) the document is displayed with sapoffice and not with notepad as i expected.
    Why is this hapenning?
    What do i have to do so that a txt file is opened with notepad?
    i´m able to upload a pdf and display it afterwards in fb03  with acrobat reader.
    i´m able to upload a doc and display it afterwards in fb03  with msword.
    but with a txt file it does not work.
    Best regards.
    Edited by: Pablo Casamayor on Nov 19, 2011 12:02 PM

    You should be doing something like this to open a text file in Notepad:
    Message Edited by smercurio_fc on 09-12-2007 01:07 PM
    Attachments:
    Example_BD.png ‏2 KB

  • Output Not Appearing in Exported .TXT File

    Hi
    I am using Crystal Reports XI R2, using Universe as a Data source, and Business Objects XI Release  2.Oracle 10G as a Datasource with Universe.
    I am getting Correct Data, in Crystal  Report Viewer, But if i am making attempt to Export the Data to a .TXT File, it is not displaying tha Data as in Crystal Report Viewer.
    1) In my Case we are Using Page Number Reset Option, which is working fine in Crystal Reports Viewer, but in .TXT file output, Page Number is not reseted.
    2) We are Using Group Headers which has Text Objects and Formula Field,  the Group Header Displays for Each Group in Viewer, but same is not displayed in .TXT File output.
    3) For Very First Group, In Viewer it Displaying Page No as 1,1,2,3.....(which is not Correct, it should be 1,2,3....), but in .TXT file Output, it Displays right One as 1,2,3......
    But If iam Exporting the Report to an PDF File, it Displays Eactly as what is in viewer.
    So Kindly Help me on this Issue.
    Thanks
    M.Mukesh
    Edited by: m.mukesh on Dec 9, 2010 9:49 PM
    Edited by: m.mukesh on Dec 9, 2010 9:50 PM

    Moved to BOE Admin forum

Maybe you are looking for