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

相关文章

Spring Boot项目部署命令java -jar的各种参数及作用详解

《SpringBoot项目部署命令java-jar的各种参数及作用详解》:本文主要介绍SpringBoot项目部署命令java-jar的各种参数及作用的相关资料,包括设置内存大小、垃圾回收... 目录前言一、基础命令结构二、常见的 Java 命令参数1. 设置内存大小2. 配置垃圾回收器3. 配置线程栈大小

SpringBoot实现微信小程序支付功能

《SpringBoot实现微信小程序支付功能》小程序支付功能已成为众多应用的核心需求之一,本文主要介绍了SpringBoot实现微信小程序支付功能,文中通过示例代码介绍的非常详细,对大家的学习或者工作... 目录一、引言二、准备工作(一)微信支付商户平台配置(二)Spring Boot项目搭建(三)配置文件

解决SpringBoot启动报错:Failed to load property source from location 'classpath:/application.yml'

《解决SpringBoot启动报错:Failedtoloadpropertysourcefromlocationclasspath:/application.yml问题》这篇文章主要介绍... 目录在启动SpringBoot项目时报如下错误原因可能是1.yml中语法错误2.yml文件格式是GBK总结在启动S

Spring中配置ContextLoaderListener方式

《Spring中配置ContextLoaderListener方式》:本文主要介绍Spring中配置ContextLoaderListener方式,具有很好的参考价值,希望对大家有所帮助,如有错误... 目录Spring中配置ContextLoaderLishttp://www.chinasem.cntene

java实现延迟/超时/定时问题

《java实现延迟/超时/定时问题》:本文主要介绍java实现延迟/超时/定时问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Java实现延迟/超时/定时java 每间隔5秒执行一次,一共执行5次然后结束scheduleAtFixedRate 和 schedu

Java Optional避免空指针异常的实现

《JavaOptional避免空指针异常的实现》空指针异常一直是困扰开发者的常见问题之一,本文主要介绍了JavaOptional避免空指针异常的实现,帮助开发者编写更健壮、可读性更高的代码,减少因... 目录一、Optional 概述二、Optional 的创建三、Optional 的常用方法四、Optio

Spring Boot项目中结合MyBatis实现MySQL的自动主从切换功能

《SpringBoot项目中结合MyBatis实现MySQL的自动主从切换功能》:本文主要介绍SpringBoot项目中结合MyBatis实现MySQL的自动主从切换功能,本文分步骤给大家介绍的... 目录原理解析1. mysql主从复制(Master-Slave Replication)2. 读写分离3.

idea maven编译报错Java heap space的解决方法

《ideamaven编译报错Javaheapspace的解决方法》这篇文章主要为大家详细介绍了ideamaven编译报错Javaheapspace的相关解决方法,文中的示例代码讲解详细,感兴趣的... 目录1.增加 Maven 编译的堆内存2. 增加 IntelliJ IDEA 的堆内存3. 优化 Mave

Java String字符串的常用使用方法

《JavaString字符串的常用使用方法》String是JDK提供的一个类,是引用类型,并不是基本的数据类型,String用于字符串操作,在之前学习c语言的时候,对于一些字符串,会初始化字符数组表... 目录一、什么是String二、如何定义一个String1. 用双引号定义2. 通过构造函数定义三、St

springboot filter实现请求响应全链路拦截

《springbootfilter实现请求响应全链路拦截》这篇文章主要为大家详细介绍了SpringBoot如何结合Filter同时拦截请求和响应,从而实现​​日志采集自动化,感兴趣的小伙伴可以跟随小... 目录一、为什么你需要这个过滤器?​​​二、核心实现:一个Filter搞定双向数据流​​​​三、完整代码