Как создать файл с расширением (.ini) в Java? - PullRequest
1 голос
/ 21 января 2011

Привет Я хочу создать этот файл (boot.ini) и записать содержимое в этот файл. Как можно создать и записать этот файл?

Ответы [ 3 ]

2 голосов
/ 21 января 2011
import java.io.*;

class FileOutputDemo 
{   

        public static void main(String args[])
        {              
                FileOutputStream out; // declare a file output object
                PrintStream p; // declare a print stream object

                try
                {
                        // Create a new file output stream
                        // connected to "boot.ini"
                        out = new FileOutputStream("boot.ini");

                        // Connect print stream to the output stream
                        p = new PrintStream( out );

                        p.println ("This is written to a file");

                        p.close();
                }
                catch (Exception e)
                {
                        System.err.println ("Error writing to file");
                }
        }
}
0 голосов
/ 21 января 2011
try {
    String content = "blah";
    BufferedWriter buf = new BufferedWriter(new FileWriter(new File("./boot.ini")));
    buf.write(content, 0, content.length());
    buf.close();        
}
catch(Exception e) {
    e.printStackTrace();
}
0 голосов
/ 21 января 2011

Попробуйте (взято с этого сайта :

import java.io.*;

public class WriteFile{

public static void main(String[] args) throws IOException{

  File f=new File("boot.ini");
  FileOutputStream fop=new FileOutputStream(f);

  if(f.exists()){
  String str="This data is written through the program";
      fop.write(str.getBytes());

      fop.flush();
      fop.close();
      System.out.println("The data has been written");
      }

      else
        System.out.println("This file is not exist");
  }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...