Search:

Type: Posts; User: JavaN00b

Search: Search took 0.11 seconds.

  1. Re: Can't get lines to cut at 60 characters and continue on next line right

    THANKS A LOT!

    Since this chapter was about Scanner class which you so nicely reminded me (the renaming deal from before). Yes, quite embarassing that I didn't get that since it's mainly Scanner...
  2. Re: Can't get lines to cut at 60 characters and continue on next line right

    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.PrintStream;
    import java.util.Scanner;

    public class Wrap2 {

    public static final int CUT = 60;

    public static...
  3. Re: Can't get lines to cut at 60 characters and continue on next line right

    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.PrintStream;
    import java.util.Scanner;

    public class Wrap2 {

    public static final int CUT = 60;

    public static...
  4. Re: Can't get lines to cut at 60 characters and continue on next line right

    Thanks Norm and JJeng, I looked at substring as bot of you told me to look into. I seem to have forgotten that it existed :rolleyes: but after getting so time to program I finally tried it out and...
  5. Can't get lines to cut at 60 characters and continue on next line right

    Hello everyone,

    it seem like I'm now stuck at the second exercise in the next chapter of my java book which is about file processing(The Scanner/PrintStream classes mainly). After trying to find a...
Results 1 to 5 of 5