Search:

Type: Posts; User: knockturnal22

Search: Search took 0.19 seconds.

  1. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    I'll try that. I think you gave me enough info to work with and figure out the next step.
  2. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    I just want the first 4 elements. I'm trying to get it so I can then turn the y,m,d, t to a code to read it in a standard java day time format.
  3. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    I fixed the problem but now trying to figure out how to isolate the specific columns.

    while (inputStream.hasNext()){
    String data = inputStream.next();
    System.out.println ( data ) ;...
  4. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    Yes that correct. Now trying to get the first 4 columns to display is my current goal.
  5. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    I guess that's where I'm lost at. I didn't make note of what values meant. Could you help me with pulling out four columns which are the year, month, date and time so I can use that create something...
  6. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    I do not have an array and that's what's throwing me off. I'm using what I learned and it should show me the first column but it's not.


    import java.io.File;
    import...
  7. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    I also attached the file that I was pulling my data.
  8. [SOLVED] Re: I can't isolate the first four colums y,m,d,t

    I'm using Eclipse and i attached a pic of the problem I'm having.
    1441
  9. [SOLVED] I can't isolate the first four colums y,m,d,t

    I'm trying to get the year, month, day and time isolated so I can then I can make it populate in a different format.



    import java.io.File;
    import java.io.FileNotFoundException;
    import...
Results 1 to 9 of 9