How do I save a String to a text file using Java?

后端 未结 24 1061
不知归路
不知归路 2020-11-22 04:18

In Java, I have text from a text field in a String variable called \"text\".

How can I save the contents of the \"text\" variable to a file?

相关标签:
24条回答
  • 2020-11-22 04:37

    Use Apache Commons IO api. Its simple

    Use API as

     FileUtils.writeStringToFile(new File("FileNameToWrite.txt"), "stringToWrite");
    

    Maven Dependency

    <dependency>
        <groupId>commons-io</groupId>
        <artifactId>commons-io</artifactId>
        <version>2.4</version>
    </dependency>
    
    0 讨论(0)
  • 2020-11-22 04:37

    You can use the ArrayList to put all the contents of the TextArea for exemple, and send as parameter by calling the save, as the writer just wrote string lines, then we use the "for" line by line to write our ArrayList in the end we will be content TextArea in txt file. if something does not make sense, I'm sorry is google translator and I who do not speak English.

    Watch the Windows Notepad, it does not always jump lines, and shows all in one line, use Wordpad ok.


    private void SaveActionPerformed(java.awt.event.ActionEvent evt) {
    
        String NameFile = Name.getText();
        ArrayList< String > Text = new ArrayList< String >();
    
        Text.add(TextArea.getText());
    
        SaveFile(NameFile, Text);
    }
    

    public void SaveFile(String name, ArrayList< String> message) {
    
        path = "C:\\Users\\Paulo Brito\\Desktop\\" + name + ".txt";
    
        File file1 = new File(path);
    
        try {
    
            if (!file1.exists()) {
    
                file1.createNewFile();
            }
    
    
            File[] files = file1.listFiles();
    
    
            FileWriter fw = new FileWriter(file1, true);
    
            BufferedWriter bw = new BufferedWriter(fw);
    
            for (int i = 0; i < message.size(); i++) {
    
                bw.write(message.get(i));
                bw.newLine();
            }
    
            bw.close();
            fw.close();
    
            FileReader fr = new FileReader(file1);
    
            BufferedReader br = new BufferedReader(fr);
    
            fw = new FileWriter(file1, true);
    
            bw = new BufferedWriter(fw);
    
            while (br.ready()) {
    
                String line = br.readLine();
    
                System.out.println(line);
    
                bw.write(line);
                bw.newLine();
    
            }
            br.close();
            fr.close();
    
        } catch (IOException ex) {
            ex.printStackTrace();
            JOptionPane.showMessageDialog(null, "Error in" + ex);     
        }   
    }
    
    0 讨论(0)
  • 2020-11-22 04:38

    If you only care about pushing one block of text to file, this will overwrite it each time.

    JFileChooser chooser = new JFileChooser();
    int returnVal = chooser.showSaveDialog(this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
        FileOutputStream stream = null;
        PrintStream out = null;
        try {
            File file = chooser.getSelectedFile();
            stream = new FileOutputStream(file); 
            String text = "Your String goes here";
            out = new PrintStream(stream);
            out.print(text);                  //This will overwrite existing contents
    
        } catch (Exception ex) {
            //do something
        } finally {
            try {
                if(stream!=null) stream.close();
                if(out!=null) out.close();
            } catch (Exception ex) {
                //do something
            }
        }
    }
    

    This example allows the user to select a file using a file chooser.

    0 讨论(0)
  • 2020-11-22 04:39

    I think the best way is using Files.write(Path path, Iterable<? extends CharSequence> lines, OpenOption... options):

    String text = "content";
    Path path = Paths.get("path", "to", "file");
    Files.write(path, Arrays.asList(text));
    

    See javadoc:

    Write lines of text to a file. Each line is a char sequence and is written to the file in sequence with each line terminated by the platform's line separator, as defined by the system property line.separator. Characters are encoded into bytes using the specified charset.

    The options parameter specifies how the the file is created or opened. If no options are present then this method works as if the CREATE, TRUNCATE_EXISTING, and WRITE options are present. In other words, it opens the file for writing, creating the file if it doesn't exist, or initially truncating an existing regular-file to a size of 0. The method ensures that the file is closed when all lines have been written (or an I/O error or other runtime exception is thrown). If an I/O error occurs then it may do so after the file has created or truncated, or after some bytes have been written to the file.

    Please note. I see people have already answered with Java's built-in Files.write, but what's special in my answer which nobody seems to mention is the overloaded version of the method which takes an Iterable of CharSequence (i.e. String), instead of a byte[] array, thus text.getBytes() is not required, which is a bit cleaner I think.

    0 讨论(0)
  • 2020-11-22 04:40

    In Java 11 the java.nio.file.Files class was extended by two new utility methods to write a string into a file. The first method (see JavaDoc here) uses the charset UTF-8 as default:

    Files.writeString(Path.of("my", "path"), "My String");
    

    And the second method (see JavaDoc here) allows to specify an individual charset:

    Files.writeString(Path.of("my", "path"), "My String", StandardCharset.ISO_8859_1);
    

    Both methods have an optional Varargs parameter for setting file handling options (see JavaDoc here). The following example would create a non-existing file or append the string to an existing one:

    Files.writeString(Path.of("my", "path"), "String to append", StandardOpenOption.CREATE, StandardOpenOption.APPEND);
    
    0 讨论(0)
  • 2020-11-22 04:42

    Just did something similar in my project. Use FileWriter will simplify part of your job. And here you can find nice tutorial.

    BufferedWriter writer = null;
    try
    {
        writer = new BufferedWriter( new FileWriter( yourfilename));
        writer.write( yourstring);
    
    }
    catch ( IOException e)
    {
    }
    finally
    {
        try
        {
            if ( writer != null)
            writer.close( );
        }
        catch ( IOException e)
        {
        }
    }
    
    0 讨论(0)
提交回复
热议问题