Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Help Managing Generated Data

  1. #1
    Junior Member
    Join Date
    May 2011
    Location
    Boulder, Colorado
    Posts
    18
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default Help Managing Generated Data

    Hey Guys,

    I first want to say that I am some what of a novice when it comes to Java coding. I have coding experience in other programming languages but have yet to have any formal training with java. I am trying to modify an open-source java plug in that my lab and I used to analyze time-lapse images of cell populations. The program does an extraordinary job of identifying and tracking cells throughout our videos and then displays this data in a GUI. It appears to mean that the program stores all of this data as a text file. What I would to do would be to enable a way to save this text file after the data has been generated as a .txt which I can pass on to other calculations/other programs but I am unsure of how to do this. I think I have identified where the code deals directly with this text file.

      	/**
    		 * Constructor for <code>text_files_mode</code>. 
    		 * <br>constructs a MyFrame from a text file that holds the frame number and 
    		 * particles information. unlike the <code>ImageProcessor</code> based constructor, 
    		 * all the particles information is set immediately on construction.
    		 * @param path full path to the file (including full file name) e.g c:\ImageJ\frame0.txt
    		 */
    		public MyFrame (String path) {
    			loadParticlesFromFile (path);
    		}

    The code is free source and I'm more than happy to post the code if it will help. Please let me know as I am kind of stuck without the knowledge of how to progress.


  2. #2
    Administrator copeg's Avatar
    Join Date
    Oct 2009
    Location
    US
    Posts
    5,320
    Thanks
    181
    Thanked 833 Times in 772 Posts
    Blog Entries
    5

    Default Re: Help Managing Generated Data

    See the following link for tutorials on how to use standard I/O operations
    http://download.oracle.com/javase/tu.../essential/io/

Similar Threads

  1. thought i had it, then i sneezed and lost it (randomly generated numbers)
    By fakeClassy in forum Java Theory & Questions
    Replies: 13
    Last Post: July 17th, 2011, 04:16 PM
  2. Replies: 2
    Last Post: June 15th, 2011, 03:49 PM
  3. Managing an embedded database
    By jstn455 in forum JDBC & Databases
    Replies: 1
    Last Post: April 24th, 2011, 10:06 AM
  4. unable to view the result generated by stored procedure
    By najmudeenhaja in forum What's Wrong With My Code?
    Replies: 1
    Last Post: October 1st, 2010, 08:39 AM
  5. problem in managing layout
    By namreen in forum What's Wrong With My Code?
    Replies: 0
    Last Post: August 26th, 2010, 12:52 AM