Search:

Type: Posts; User: fh84

Search: Search took 0.10 seconds.

  1. Replies
    8
    Views
    2,332

    Re: write text to a file help

    Well am using a queue simulation and I want to write every line of the queue
    The code below shows more details


    if(tillQueue.peek() == null)
    System.out.println(i+"\t"+"\t"+...
  2. Replies
    8
    Views
    2,332

    Re: write text to a file help

    public static boolean saveStringToFile(String fileName, String saveString)
    {
    boolean saved = false;
    BufferedWriter bw = null;

    try
    {
    // bw = new PrintWriter(new...
  3. Replies
    8
    Views
    2,332

    Re: write text to a file help

    Hello to all,
    I have managed to write to a file but is keeps writing on the same line.
    I’ve tried «\n" but the .txt file recognizes it as a character.
    any ideas?
    thank you
Results 1 to 3 of 3