Javaで既存のファイルに繰り返しテキストを追加する必要があります。それ、どうやったら出来るの?
ロギング目的でこれをやっていますか?もしそうなら、 これ用のライブラリがいくつかあります 。最も人気のある2つは Log4j と Logback です。
これを一度だけ実行する必要がある場合は、 Filesクラス を使用すると簡単です。
try {
Files.write(Paths.get("myfile.txt"), "the text".getBytes(), StandardOpenOption.APPEND);
}catch (IOException e) {
//exception handling left as an exercise for the reader
}
慎重に :上記の方法では、ファイルがまだ存在していなければNoSuchFileException
がスローされます。それはまた自動的に改行を追加しません(あなたがテキストファイルに追加するときしばしば望む)。 Steve Chambersの答えFiles
クラスを使ってこれを実現する方法を説明します。
ただし、同じファイルに何度も書き込む場合は、ディスク上のファイルを何度も開いたり閉じたりする必要があるため、処理が遅くなります。この場合、バッファードライターのほうが優れています。
try(FileWriter fw = new FileWriter("myfile.txt", true);
BufferedWriter bw = new BufferedWriter(fw);
PrintWriter out = new PrintWriter(bw))
{
out.println("the text");
//more code
out.println("more text");
//more code
} catch (IOException e) {
//exception handling left as an exercise for the reader
}
注:
FileWriter
コンストラクタの2番目のパラメータは、新しいファイルを作成するのではなく、ファイルに追加するように指示します。 (ファイルが存在しない場合は作成されます。)BufferedWriter
など)にはFileWriter
を使用することをお勧めします。PrintWriter
を使用すると、おそらくSystem.out
から慣れ親しんでいるprintln
構文にアクセスできます。BufferedWriter
およびPrintWriter
ラッパーは厳密には必要ありません。try {
PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("myfile.txt", true)));
out.println("the text");
out.close();
} catch (IOException e) {
//exception handling left as an exercise for the reader
}
もしあなたがより古いJavaのために強力な例外処理を必要とするなら、それは非常に冗長になります:
FileWriter fw = null;
BufferedWriter bw = null;
PrintWriter out = null;
try {
fw = new FileWriter("myfile.txt", true);
bw = new BufferedWriter(fw);
out = new PrintWriter(bw);
out.println("the text");
out.close();
} catch (IOException e) {
//exception handling left as an exercise for the reader
}
finally {
try {
if(out != null)
out.close();
} catch (IOException e) {
//exception handling left as an exercise for the reader
}
try {
if(bw != null)
bw.close();
} catch (IOException e) {
//exception handling left as an exercise for the reader
}
try {
if(fw != null)
fw.close();
} catch (IOException e) {
//exception handling left as an exercise for the reader
}
}
追加する場合は、フラグをfileWriter
に設定してtrue
を使用できます。
try
{
String filename= "MyFile.txt";
FileWriter fw = new FileWriter(filename,true); //the true will append the new data
fw.write("add a line\n");//appends the string to the file
fw.close();
}
catch(IOException ioe)
{
System.err.println("IOException: " + ioe.getMessage());
}
Try/catchブロックに関するここでのすべての答えに、.close()部分をfinallyブロックに含めるべきではありませんか。
マーク付き回答の例:
PrintWriter out = null;
try {
out = new PrintWriter(new BufferedWriter(new FileWriter("writePath", true)));
out.println("the text");
} catch (IOException e) {
System.err.println(e);
} finally {
if (out != null) {
out.close();
}
}
また、Java 7では、 try-with-resourcesステートメント を使用できます。宣言されたリソースは自動的に処理されるため、finallyブロックは必要ありません。また、冗長度も低くなります。
try(PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter("writePath", true)))) {
out.println("the text");
} catch (IOException e) {
System.err.println(e);
}
編集 - Apache Commons 2.1では、正しい方法は次のとおりです。
FileUtils.writeStringToFile(file, "String to append", true);
@ Kipの解決策を適用して、最後にファイルを正しく閉じるようにしました。
public static void appendToFile(String targetFile, String s) throws IOException { appendToFile(new File(targetFile), s); } public static void appendToFile(File targetFile, String s) throws IOException { PrintWriter out = null; try { out = new PrintWriter(new BufferedWriter(new FileWriter(targetFile, true))); out.println(s); } finally { if (out != null) { out.close(); } } }
Kip's answer を少し拡張すると、ファイルに 改行 を追加するための単純なJava 7+メソッドがあります。 まだ存在しない場合は作成します :
try {
final Path path = Paths.get("path/to/filename.txt");
Files.write(path, Arrays.asList("New line to append"), StandardCharsets.UTF_8,
Files.exists(path) ? StandardOpenOption.APPEND : StandardOpenOption.CREATE);
} catch (final IOException ioe) {
// Add your own exception handling...
}
注:上記では、 Files.write
オーバーロードを使用してlinesのテキストをファイルに書き込みます(つまり、println
コマンドに似ています)。 print
コマンドと同じように、代わりに Files.write
オーバーロードを使用して、バイト配列を渡すことができます(例:"mytext".getBytes(StandardCharsets.UTF_8)
)。
エラーが発生した場合に、これらの回答のうちのいくつがファイルハンドルを開いたままにしておくかという少し憂慮すべきことです。答えは https://stackoverflow.com/a/15053443/2498188 ですが、それはBufferedWriter()
がスローできないからです。もしそれが可能なら、例外はFileWriter
オブジェクトを開いたままにします。
これを行うためのより一般的な方法は、BufferedWriter()
がスローできるかどうかは関係ありません。
PrintWriter out = null;
BufferedWriter bw = null;
FileWriter fw = null;
try{
fw = new FileWriter("outfilename", true);
bw = new BufferedWriter(fw);
out = new PrintWriter(bw);
out.println("the text");
}
catch( IOException e ){
// File writing/opening failed at some stage.
}
finally{
try{
if( out != null ){
out.close(); // Will close bw and fw too
}
else if( bw != null ){
bw.close(); // Will close fw too
}
else if( fw != null ){
fw.close();
}
else{
// Oh boy did it fail hard! :3
}
}
catch( IOException e ){
// Closing the file writers failed for some obscure reason
}
}
Java 7以降、推奨される方法は "try with resources"を使用してJVMに処理させることです。
try( FileWriter fw = new FileWriter("outfilename", true);
BufferedWriter bw = new BufferedWriter(fw);
PrintWriter out = new PrintWriter(bw)){
out.println("the text");
}
catch( IOException e ){
// File writing/opening failed at some stage.
}
Java-7ではそれはそのようなこともできる。
import Java.nio.file.Files;
import Java.nio.file.Path;
import Java.nio.file.Paths;
import Java.nio.file.StandardOpenOption;
// ---------------------
Path filePath = Paths.get("someFile.txt");
if (!Files.exists(filePath)) {
Files.createFile(filePath);
}
Files.write(filePath, "Text to be added".getBytes(), StandardOpenOption.APPEND);
Java 7+
私は普通のJavaのファンなので、私の謙虚な意見では、それが前述の答えの組み合わせであることを何か提案します。多分私はパーティーに遅刻します。これがコードです:
String sampleText = "test" + System.getProperty("line.separator");
Files.write(Paths.get(filePath), sampleText.getBytes(StandardCharsets.UTF_8),
StandardOpenOption.CREATE, StandardOpenOption.APPEND);
ファイルが存在しない場合は作成し、すでに存在する場合は既存のファイルに sampleText を追加します。これを使用すると、不要なライブラリをクラスパスに追加する手間が省けます。
これは1行のコードで実行できます。お役に立てれば :)
Files.write(Paths.get(fileName), msg.getBytes(), StandardOpenOption.APPEND);
Java.nio. Files をJava.nio.file. StandardOpenOption と共に使用する
PrintWriter out = null;
BufferedWriter bufWriter;
try{
bufWriter =
Files.newBufferedWriter(
Paths.get("log.txt"),
Charset.forName("UTF8"),
StandardOpenOption.WRITE,
StandardOpenOption.APPEND,
StandardOpenOption.CREATE);
out = new PrintWriter(bufWriter, true);
}catch(IOException e){
//Oh, no! Failed to create PrintWriter
}
//After successful creation of PrintWriter
out.println("Text to be appended");
//After done writing, remember to close!
out.close();
これはBufferedWriter
パラメータを受け取るFilesを使用したStandardOpenOption
と、その結果のPrintWriter
からの自動フラッシュBufferedWriter
を作成します。 PrintWriter
のprintln()
メソッドを呼び出して、ファイルに書き込むことができます。
このコードで使用されるStandardOpenOption
パラメータは、書き込み用にファイルを開き、ファイルに追加するだけで、ファイルが存在しない場合は作成します。
Paths.get("path here")
はnew File("path here").toPath()
に置き換えることができます。そしてCharset.forName("charset name")
は希望するCharset
に適応するように修正することができます。
細部を追加します。
new FileWriter("outfilename", true)
2.ndパラメータ(true)は、 appendable ( http://docs.Oracle.com/javase/7/docs/api/Java/lang/Appendableと呼ばれる機能(またはインタフェース)です。 html )特定のファイル/ストリームの末尾にコンテンツを追加できるようにすることに責任があります。このインタフェースはJava 1.5以降で実装されています。各オブジェクト BufferedWriter、CharArrayWriter、CharBuffer、FileWriter、FilterWriter、LogStream、OutputStreamWriter、PipedWriter、PrintStream、PrintWriter、StringBuffer、StringBuilder、StringWriter、Writer)このインタフェースではコンテンツを追加するために使用することができます
言い換えれば、あなたはあなたのgzipされたファイルにいくつかのコンテンツを追加することができます、またはいくつかのhttpプロセス
Guavaを使ったサンプル:
File to = new File("C:/test/test.csv");
for (int i = 0; i < 42; i++) {
CharSequence from = "some string" + i + "\n";
Files.append(from, to, Charsets.UTF_8);
}
BufferFileWriter.appendを試してみてください、それは私と一緒に動作します。
FileWriter fileWriter;
try {
fileWriter = new FileWriter(file,true);
BufferedWriter bufferFileWriter = new BufferedWriter(fileWriter);
bufferFileWriter.append(obj.toJSONString());
bufferFileWriter.newLine();
bufferFileWriter.close();
} catch (IOException ex) {
Logger.getLogger(JsonTest.class.getName()).log(Level.SEVERE, null, ex);
}
Try-with-resourcesを使用し、その後Java 7より前のものをすべて使用することをお勧めします。
static void appendStringToFile(Path file, String s) throws IOException {
try (BufferedWriter out = Files.newBufferedWriter(file, StandardCharsets.UTF_8, StandardOpenOption.APPEND)) {
out.append(s);
out.newLine();
}
}
Java 7以上を使用していて、ファイルに追加(追加)される内容がわかっている場合は、NIOパッケージの newBufferedWriter メソッドを使用できます。
public static void main(String[] args) {
Path FILE_PATH = Paths.get("C:/temp", "temp.txt");
String text = "\n Welcome to Java 8";
//Writing to the file temp.txt
try (BufferedWriter writer = Files.newBufferedWriter(FILE_PATH, StandardCharsets.UTF_8, StandardOpenOption.APPEND)) {
writer.write(text);
} catch (IOException e) {
e.printStackTrace();
}
}
注意すべき点がいくつかあります。
StandardCharsets
には定数があります。try-with-resource
ステートメントを使用します。OPは尋ねませんでしたが、念のために特定のキーワードを持つ行を検索したい場合があります。 confidential
では、JavaのストリームAPIを利用できます。
//Reading from the file the first line which contains Word "confidential"
try {
Stream<String> lines = Files.lines(FILE_PATH);
Optional<String> containsJava = lines.filter(l->l.contains("confidential")).findFirst();
if(containsJava.isPresent()){
System.out.println(containsJava.get());
}
} catch (IOException e) {
e.printStackTrace();
}
String str;
String path = "C:/Users/...the path..../iin.txt"; // you can input also..i created this way :P
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PrintWriter pw = new PrintWriter(new FileWriter(path, true));
try
{
while(true)
{
System.out.println("Enter the text : ");
str = br.readLine();
if(str.equalsIgnoreCase("exit"))
break;
else
pw.println(str);
}
}
catch (Exception e)
{
//oh noes!
}
finally
{
pw.close();
}
これはあなたが意図していることをするでしょう..
import Java.io.BufferedWriter;
import Java.io.FileWriter;
import Java.io.IOException;
import Java.io.PrintWriter;
public class Writer {
public static void main(String args[]){
doWrite("output.txt","Content to be appended to file");
}
public static void doWrite(String filePath,String contentToBeAppended){
try(
FileWriter fw = new FileWriter(filePath, true);
BufferedWriter bw = new BufferedWriter(fw);
PrintWriter out = new PrintWriter(bw)
)
{
out.println(contentToBeAppended);
}
catch( IOException e ){
// File writing/opening failed at some stage.
}
}
}
FileOutputStream fos = new FileOutputStream("File_Name", true);
fos.write(data);
trueの場合、既存のファイルにデータを追加することができます。書くなら
FileOutputStream fos = new FileOutputStream("File_Name");
既存のファイルを上書きします。だから最初のアプローチに行きます。
プロジェクト内の任意の場所に関数を作成し、必要な場所にその関数を呼び出すだけです。
皆さんは、皆さんが非同期スレッドではなくアクティブスレッドを呼び出していることを覚えておく必要があります。それを正しく実行するには、おそらく5から10ページのほうがよいでしょう。あなたのプロジェクトにもっと時間をかけて、すでに書かれたことを書くのを忘れないようにしましょう。正しく
//Adding a static modifier would make this accessible anywhere in your app
public Logger getLogger()
{
return Java.util.logging.Logger.getLogger("MyLogFileName");
}
//call the method anywhere and append what you want to log
//Logger class will take care of putting timestamps for you
//plus the are ansychronously done so more of the
//processing power will go into your application
//from inside a function body in the same class ...{...
getLogger().log(Level.INFO,"the text you want to append");
...}...
/*********log file resides in server root log files********/
3行目が実際にテキストを追加するので、3行目のコード2行目。 :P
としょうかん
import Java.io.BufferedWriter;
import Java.io.File;
import Java.io.FileWriter;
import Java.io.IOException;
コード
public void append()
{
try
{
String path = "D:/sample.txt";
File file = new File(path);
FileWriter fileWriter = new FileWriter(file,true);
BufferedWriter bufferFileWriter = new BufferedWriter(fileWriter);
fileWriter.append("Sample text in the file to append");
bufferFileWriter.close();
System.out.println("User Registration Completed");
}catch(Exception ex)
{
System.out.println(ex);
}
}
これも試すことができます。
JFileChooser c= new JFileChooser();
c.showOpenDialog(c);
File write_file = c.getSelectedFile();
String Content = "Writing into file"; //what u would like to append to the file
try
{
RandomAccessFile raf = new RandomAccessFile(write_file, "rw");
long length = raf.length();
//System.out.println(length);
raf.setLength(length + 1); //+ (integer value) for spacing
raf.seek(raf.length());
raf.writeBytes(Content);
raf.close();
}
catch (Exception e) {
//any exception handling method of ur choice
}
FileOutputStream stream = new FileOutputStream(path, true);
try {
stream.write(
string.getBytes("UTF-8") // Choose your encoding.
);
} finally {
stream.close();
}
その後、上流のどこかでIOExceptionをキャッチします。
Apacheコモンズプロジェクト をお勧めします。このプロジェクトはすでにあなたが必要とすることをするためのフレームワークを提供しています(すなわち、コレクションの柔軟なフィルタリング)。
次の方法では、ファイルにテキストを追加しましょう。
private void appendToFile(String filePath, String text)
{
PrintWriter fileWriter = null;
try
{
fileWriter = new PrintWriter(new BufferedWriter(new FileWriter(
filePath, true)));
fileWriter.println(text);
} catch (IOException ioException)
{
ioException.printStackTrace();
} finally
{
if (fileWriter != null)
{
fileWriter.close();
}
}
}
または FileUtils
:を使用します。
public static void appendToFile(String filePath, String text) throws IOException
{
File file = new File(filePath);
if(!file.exists())
{
file.createNewFile();
}
String fileContents = FileUtils.readFileToString(file);
if(file.length() != 0)
{
fileContents = fileContents.concat(System.lineSeparator());
}
fileContents = fileContents.concat(text);
FileUtils.writeStringToFile(file, fileContents);
}
効率的ではありませんが、うまくいきます。改行は正しく処理され、まだ存在しない場合は新しいファイルが作成されます。
特定の行にテキストを追加 最初にファイル全体を読み、必要な場所にテキストを追加してから、以下のコードのようにすべてを上書きすることができます。
public static void addDatatoFile(String data1, String data2){
String fullPath = "/home/user/dir/file.csv";
File dir = new File(fullPath);
List<String> l = new LinkedList<String>();
try (BufferedReader br = new BufferedReader(new FileReader(dir))) {
String line;
int count = 0;
while ((line = br.readLine()) != null) {
if(count == 1){
//add data at the end of second line
line += data1;
}else if(count == 2){
//add other data at the end of third line
line += data2;
}
l.add(line);
count++;
}
br.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
createFileFromList(l, dir);
}
public static void createFileFromList(List<String> list, File f){
PrintWriter writer;
try {
writer = new PrintWriter(f, "UTF-8");
for (String d : list) {
writer.println(d.toString());
}
writer.close();
} catch (FileNotFoundException | UnsupportedEncodingException e) {
e.printStackTrace();
}
}
このコードはあなたの必要性を十分にします:
FileWriter fw=new FileWriter("C:\\file.json",true);
fw.write("ssssss");
fw.close();
/**********************************************************************
* it will write content to a specified file
*
* @param keyString
* @throws IOException
*********************************************************************/
public static void writeToFile(String keyString,String textFilePAth) throws IOException {
// For output to file
File a = new File(textFilePAth);
if (!a.exists()) {
a.createNewFile();
}
FileWriter fw = new FileWriter(a.getAbsoluteFile(), true);
BufferedWriter bw = new BufferedWriter(fw);
bw.append(keyString);
bw.newLine();
bw.close();
}// end of writeToFile()
私の答え:
JFileChooser chooser= new JFileChooser();
chooser.showOpenDialog(chooser);
File file = chooser.getSelectedFile();
String Content = "What you want to append to file";
try
{
RandomAccessFile random = new RandomAccessFile(file, "rw");
long length = random.length();
random.setLength(length + 1);
random.seek(random.length());
random.writeBytes(Content);
random.close();
}
catch (Exception exception) {
//exception handling
}