Cách GHI – ĐỌC dữ liệu từ tệp tin trong ngôn ngữ Java
import java.io.FileWriter;
import java.io.IOException;
public class WriteToFileExample {
public static void main(String[] args) {
String filePath = "example.txt";
String content = "Hello, this is an example of writing to a file in Java.";
try (FileWriter writer = new FileWriter(filePath)) {
writer.write(content);
System.out.println("File written successfully!");
} catch (IOException e) {
System.err.println("An error occurred while writing to the file.");
e.printStackTrace();
}
}
}
public class ReadFromFileExample {
public static void main(String[] args) {
String filePath = "example.txt";
try (BufferedReader reader = new BufferedReader(new FileReader(filePath))) {
String line;
while ((line = reader.readLine()) != null) {
System.out.println(line);
}
} catch (IOException e) {
System.err.println("An error occurred while reading the file.");
e.printStackTrace();
}
}
}
- So sánh giữa tiếng Anh của thập niên 90 và tiếng Anh của giới trẻ hiện nay
- GNN: Khi AI “hiểu” được mối quan hệ, không chỉ là dữ liệu
- XU HƯỚNG CONTENT MARKETING HIỆN NAY: SỰ CHUYỂN DỊCH TỪ NỘI DUNG ĐẾN TRẢI NGHIỆM
- Sự kiện đối thoại ART.ITECTURE #2: Xây dựng cảm xúc - Cách âm nhạc và kiến trúc định hình trải nghiệm của con người
- Các khía cạnh đạo đức trong quảng cáo

