Java宝藏实验资源库(5)字符流

2024-06-21 23:20

本文主要是介绍Java宝藏实验资源库(5)字符流,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、实验目的

  1. 掌握输入输出流的基本概念。
  2. 掌握字符流处理类的基本结构。
  3. 掌握使用字符流进行输入输出的基本方法。

二、实验内容过程及结果  

**12.12 (Reformat Java source code) Write a program that converts the Java source

code from the next-line brace style to the end-of-line brace style. For example,

the following Java source in (a) uses the next-line brace style. Your program

converts it to the end-of-line brace style in (b).

HexFormatException

VideoNote

 

Your program can be invoked from the command line with the Java source

code file as the argument. It converts the Java source code to a new format. For

example, the following command converts the Java source-code file Test.java

to the end-of-line brace style.

java Exercise12_12 Test.java

* * 12.12(重新格式化Java源代码)编写一个程序转换Java源代码从下一行大括号样式到行尾大括号样式的代码。

例如,下面(a)中的Java源代码使用了下一行大括号样式。你的程序将其转换为(b)中的行尾大括号样式。

       可以使用Java源代码从命令行调用您的程序代码文件作为参数。它将Java源代码转换为新的格式。为到行尾大括号样式。

java练习12_12测试

运行代码如下 :  

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;public class BraceStyleConverter {public static void main(String[] args) {if (args.length == 0) {System.out.println("Usage: java BraceStyleConverter <input_file>");return;}String inputFile = args[0];String outputFile = "converted_" + inputFile;try (BufferedReader reader = new BufferedReader(new FileReader(inputFile));FileWriter writer = new FileWriter(outputFile)) {String line;boolean insideBlock = false;while ((line = reader.readLine()) != null) {line = line.trim();if (line.startsWith("{")) {insideBlock = true;}if (insideBlock) {writer.write(line);if (line.endsWith("}")) {writer.write("\n");insideBlock = false;} else {writer.write(" ");}} else {writer.write(line + "\n");}}} catch (IOException e) {e.printStackTrace();}System.out.println("Conversion completed. Output written to " + outputFile);}
}

运行结果  

 

**12.18 (Add package statement) Suppose you have Java source files under the direc

tories chapter1, chapter2, . . . , chapter34. Write a program to insert the

statement package chapteri; as the first line for each Java source file under

the directory chapteri. Suppose chapter1, chapter2, . . . , chapter34

are under the root directory srcRootDirectory. The root directory and

chapteri directory may contain other folders and files. Use the following

command to run the program:

java Exercise12_18 srcRootDirectory

* * 12.18(添加包语句)假设在目录下有Java源文件托利党第一章,第二章……, chapter34。编写一个程序来插入语句包章节;作为下面每个Java源文件的第一行目录章。假设第一章,第二章,…, chapter34都在根目录srcRootDirectory下。根目录和Chapteri目录可能包含其他文件夹和文件。使用以下命令命令运行程序:

java Exercise12_18 srcRootDirectory

 运行代码如下 :

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;public class PackageStatementInserter {public static void main(String[] args) {if (args.length == 0) {System.out.println("Usage: java PackageStatementInserter <srcRootDirectory>");return;}String srcRootDirectory = args[0];insertPackageStatements(srcRootDirectory);System.out.println("Package statements inserted successfully.");}public static void insertPackageStatements(String srcRootDirectory) {File rootDir = new File(srcRootDirectory);if (!rootDir.exists() || !rootDir.isDirectory()) {System.out.println("Invalid source root directory.");return;}File[] chapterDirs = rootDir.listFiles(File::isDirectory);if (chapterDirs == null) {System.out.println("No subdirectories found in the source root directory.");return;}for (File chapterDir : chapterDirs) {File[] javaFiles = chapterDir.listFiles((dir, name) -> name.toLowerCase().endsWith(".java"));if (javaFiles == null) {continue; // Skip directories without Java files}for (File javaFile : javaFiles) {try {insertPackageStatement(javaFile);} catch (IOException e) {e.printStackTrace();}}}}private static void insertPackageStatement(File javaFile) throws IOException {String originalFilePath = javaFile.getAbsolutePath();String tempFilePath = originalFilePath + ".tmp";try (BufferedReader reader = new BufferedReader(new FileReader(originalFilePath));FileWriter writer = new FileWriter(tempFilePath)) {// Insert package statement as the first lineString packageStatement = getPackageStatement(javaFile);if (packageStatement != null) {writer.write(packageStatement + "\n");}// Copy the rest of the fileString line;while ((line = reader.readLine()) != null) {writer.write(line + "\n");}}// Replace the original file with the modified temp filejavaFile.delete();new File(tempFilePath).renameTo(new File(originalFilePath));}private static String getPackageStatement(File javaFile) throws IOException {String chapterName = javaFile.getParentFile().getName(); // Assumes chapter directories are named appropriatelyString packageName = "chapter" + chapterName; // Adjust as needed based on your directory structurereturn "package " + packageName + ";";}
}

 运行结果 

 

**12.20 (Remove package statement) Suppose you have Java source files under the directories chapter1, chapter2, . . . , chapter34. Write a program to remove the statement package chapteri; in the first line for each Java source file under the directory chapteri.    Supposechapter1, chapter2, . . . , chapter34 are under the root directory srcRootDirectory. The root directory and chapteri directory may contain other folders and files. Use the following command to run the program:

java Exercise12_20 srcRootDirectory

* * 12.20(删除包语句)假设Java源文件在目录chapter1, chapter2,…, chapter34。编写程序…删除语句包章节;在每个Java的第一行中目录chapteri下的源文件。假设第一,第二章,……、chapter34都在根目录srcRootDirectory下。根目录和chapteri目录可能包含其他文件夹和文件。使用执行以下命令运行程序:

java Exercise12_20 srcRootDirectory

 运行代码如下 :

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;public class PackageStatementRemover {public static void main(String[] args) {if (args.length == 0) {System.out.println("Usage: java PackageStatementRemover <srcRootDirectory>");return;}String srcRootDirectory = args[0];removePackageStatements(srcRootDirectory);System.out.println("Package statements removed successfully.");}public static void removePackageStatements(String srcRootDirectory) {File rootDir = new File(srcRootDirectory);if (!rootDir.exists() || !rootDir.isDirectory()) {System.out.println("Invalid source root directory.");return;}File[] chapterDirs = rootDir.listFiles(File::isDirectory);if (chapterDirs == null) {System.out.println("No subdirectories found in the source root directory.");return;}for (File chapterDir : chapterDirs) {File[] javaFiles = chapterDir.listFiles((dir, name) -> name.toLowerCase().endsWith(".java"));if (javaFiles == null) {continue; // Skip directories without Java files}for (File javaFile : javaFiles) {try {removePackageStatement(javaFile);} catch (IOException e) {e.printStackTrace();}}}}private static void removePackageStatement(File javaFile) throws IOException {String originalFilePath = javaFile.getAbsolutePath();String tempFilePath = originalFilePath + ".tmp";try (BufferedReader reader = new BufferedReader(new FileReader(originalFilePath));FileWriter writer = new FileWriter(tempFilePath)) {// Skip the first line (package statement)reader.readLine(); // Assuming the first line is always the package statement// Copy the rest of the fileString line;while ((line = reader.readLine()) != null) {writer.write(line + "\n");}}// Replace the original file with the modified temp filejavaFile.delete();new File(tempFilePath).renameTo(new File(originalFilePath));}
}

运行结果  

三、实验结论   

       通过本次实验实践了字符流输入输出功能的知识和操作,得到了调用子功能包时一定要注重效率,感悟到对程序的底层逻辑一定要了解,不能一味地求速学,该精学时还得筑牢基础。

 结语   

 喜欢的事情就要做到极致

决不能半途而废

!!!

这篇关于Java宝藏实验资源库(5)字符流的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1082626

相关文章

Java NoClassDefFoundError运行时错误分析解决

《JavaNoClassDefFoundError运行时错误分析解决》在Java开发中,NoClassDefFoundError是一种常见的运行时错误,它通常表明Java虚拟机在尝试加载一个类时未能... 目录前言一、问题分析二、报错原因三、解决思路检查类路径配置检查依赖库检查类文件调试类加载器问题四、常见

Java注解之超越Javadoc的元数据利器详解

《Java注解之超越Javadoc的元数据利器详解》本文将深入探讨Java注解的定义、类型、内置注解、自定义注解、保留策略、实际应用场景及最佳实践,无论是初学者还是资深开发者,都能通过本文了解如何利用... 目录什么是注解?注解的类型内置注编程解自定义注解注解的保留策略实际用例最佳实践总结在 Java 编程

解决IDEA报错:编码GBK的不可映射字符问题

《解决IDEA报错:编码GBK的不可映射字符问题》:本文主要介绍解决IDEA报错:编码GBK的不可映射字符问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录IDEA报错:编码GBK的不可映射字符终端软件问题描述原因分析解决方案方法1:将命令改为方法2:右下jav

Java 实用工具类Spring 的 AnnotationUtils详解

《Java实用工具类Spring的AnnotationUtils详解》Spring框架提供了一个强大的注解工具类org.springframework.core.annotation.Annot... 目录前言一、AnnotationUtils 的常用方法二、常见应用场景三、与 JDK 原生注解 API 的

Java controller接口出入参时间序列化转换操作方法(两种)

《Javacontroller接口出入参时间序列化转换操作方法(两种)》:本文主要介绍Javacontroller接口出入参时间序列化转换操作方法,本文给大家列举两种简单方法,感兴趣的朋友一起看... 目录方式一、使用注解方式二、统一配置场景:在controller编写的接口,在前后端交互过程中一般都会涉及

Java中的StringBuilder之如何高效构建字符串

《Java中的StringBuilder之如何高效构建字符串》本文将深入浅出地介绍StringBuilder的使用方法、性能优势以及相关字符串处理技术,结合代码示例帮助读者更好地理解和应用,希望对大家... 目录关键点什么是 StringBuilder?为什么需要 StringBuilder?如何使用 St

使用Java将各种数据写入Excel表格的操作示例

《使用Java将各种数据写入Excel表格的操作示例》在数据处理与管理领域,Excel凭借其强大的功能和广泛的应用,成为了数据存储与展示的重要工具,在Java开发过程中,常常需要将不同类型的数据,本文... 目录前言安装免费Java库1. 写入文本、或数值到 Excel单元格2. 写入数组到 Excel表格

Java并发编程之如何优雅关闭钩子Shutdown Hook

《Java并发编程之如何优雅关闭钩子ShutdownHook》这篇文章主要为大家详细介绍了Java如何实现优雅关闭钩子ShutdownHook,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起... 目录关闭钩子简介关闭钩子应用场景数据库连接实战演示使用关闭钩子的注意事项开源框架中的关闭钩子机制1.

Maven中引入 springboot 相关依赖的方式(最新推荐)

《Maven中引入springboot相关依赖的方式(最新推荐)》:本文主要介绍Maven中引入springboot相关依赖的方式(最新推荐),本文给大家介绍的非常详细,对大家的学习或工作具有... 目录Maven中引入 springboot 相关依赖的方式1. 不使用版本管理(不推荐)2、使用版本管理(推

Java 中的 @SneakyThrows 注解使用方法(简化异常处理的利与弊)

《Java中的@SneakyThrows注解使用方法(简化异常处理的利与弊)》为了简化异常处理,Lombok提供了一个强大的注解@SneakyThrows,本文将详细介绍@SneakyThro... 目录1. @SneakyThrows 简介 1.1 什么是 Lombok?2. @SneakyThrows