Search:

Type: Posts; User: coltson

Search: Search took 0.19 seconds.

  1. "Error cannot find symbol" "throws BadLocationException"

    I am getting the error that it is the thread title when running this code:


    void printLines (JTextArea ta) {
    String temp = content.get(0);
    String [] splitter =...
  2. Re: Why doesn't JTextArea execute in this piece of code?

    More of the code:



    JFrame jframe = new JFrame ();
    jframe.setVisible (true);
    jframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JTextArea ta = new JTextArea(20,40); ...
  3. Why doesn't JTextArea execute in this piece of code?

    Hi I have the following code:

    JFrame jframe = new JFrame ();
    .........
    JTextArea ta = new JTextArea(20,40);
    .........
    try {
    FileReader fr = new FileReader...
  4. Re: My program can't find file, even it being there

    What? Nothing is working now, it's worst than before. As I said, not only I can't run the program in the correct directory but I am also not being able to read the file contents
  5. Re: My program can't find file, even it being there

    I find out what the problem was. The problem is that the program is running in the wrong directory, ../bin instead of ../bin/Procurador de texto.

    And I don't get how it is happening, because...
  6. My program can't find file, even it being there

    I am developing a program where I read a file whose content is the name of other files that I need to read their content.
    I do it and store every line (which represents a file name) in a list of...
  7. Can't compile classes due to exception problems

    These are the error messages that shows up when I try to compile it:

    Here is my code

    import java.util.Scanner;
    import java.util.List;
    import java.io.BufferedReader;
    import...
Results 1 to 7 of 7