修复警告:使用或覆盖 Java 中已弃用的 API
本文我们将了解为什么警告说使用或覆盖已弃用的 API,并演示如何修复此问题以完成任务。
修复警告说使用或覆盖 Java 中已弃用的 API
示例代码(包含警告):
//import libraries
import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
//Main class
public class Main {
//main method
public static void main(String[] args){
//path of a text file
File filePath = new File("Files/TestFile.txt");
try {
//obtain input bytes from a file
FileInputStream fileInputStream = new FileInputStream(filePath);
//adds the functionality to another input stream
BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream);
//lets an app read primitive Java data types from the specified input stream
DataInputStream dataInputStream = new DataInputStream(bufferedInputStream);
if (dataInputStream.available() != 0) {
// Get a line.
String line = dataInputStream.readLine();
// Place words to an array which are split by a "space".
String[] stringParts = line.split(" ");
// Initialize the word's maximum length.
int maximumLength = 1;
// iterate over each stingPart, the next one is addressed as "stringX"
for (String stringX : stringParts) {
// If a document contains the word longer than.
if (maximumLength < stringX.length())
// Set the new value for the maximum length.
maximumLength = stringX.length();
}//end for-loop
// +1 because array index starts from "0".
int[] counter = new int[maximumLength + 1];
for (String str : stringParts) {
// Add one to the number of words that length has
counter[str.length()] ++;
}
// We are using this kind of loop because we require the "length".
for (int i = 1; i < counter.length; i++) {
System.out.println(i + " letter words: " + counter[i]);
}//end for-loop
}//end if statement
}//end try
catch (IOException ex){
ex.printStackTrace();
}//end catch
}//end main method
}//end Main class
在此代码中,我们访问一个 .txt 文件,逐行读取该文件,并将单词放入一个数组中,该数组根据单个空格进行分割。 然后,我们计算每个单词中的字符数并将其全部显示在程序输出中。
尽管该程序生成输出,但它也突出显示我们正在 String line = dataInputStream.readLine();
行使用或覆盖已弃用的 API。 请参阅以下内容。
此警告是使用 DataInputStream 类的 readLine()
方法生成的。 根据文档,该方法自 JDK 1.1 起已被弃用,因为它不能正确地将字节转换为字符。
尽管该方法已被弃用,但在某些情况下可能会按预期执行。 但我们不能保证它能够继续履行其职责。
因此,最好使用类似但一致的方法。
从 JDK 1.1 开始,读取文本行的首选方法是 BufferedReader 类中的 readLine()
函数。 我们不必从头开始更改所有代码,只需将 DataInputStream 转换为 BufferedReader 类即可。
替换这行代码:
DataInputStream dataInputStream = new DataInputStream(in);
替换为这行代码:
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(in));
现在,完整的工作程序如下所示。
//import libraries
import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
//Main class
public class Main {
//main method
public static void main(String[] args){
//path of a text file
File filePath = new File("Files/TestFile.txt");
try {
//obtain input bytes from a file
FileInputStream fileInputStream = new FileInputStream(filePath);
//adds the functionality to another input stream
BufferedInputStream bufferedInputStream = new BufferedInputStream(fileInputStream);
//lets an app read primitive Java data types from the specified input stream
//DataInputStream dataInputStream = new DataInputStream(bufferedInputStream);
BufferedReader bufferedReader = new BufferedReader(
new InputStreamReader(bufferedInputStream));
String line="";
//get a line and check if it is not null
if ((line = bufferedReader. readLine()) != null) {
// Place words to an array which are split by a "space".
String[] stringParts = line.split(" ");
// Initialize the word's maximum length.
int maximumLength = 1;
// iterate over each stingPart, the next one is addressed as "stringX"
for (String stringX : stringParts) {
// If a document contains the word longer than.
if (maximumLength < stringX.length())
// Set the new value for the maximum length.
maximumLength = stringX.length();
}//end for-loop
// +1 because array index starts from "0".
int[] counter = new int[maximumLength + 1];
for (String str : stringParts) {
// Add one to the number of words that length has
counter[str.length()] ++;
}
// We are using this kind of loop because we require the "length".
for (int i = 1; i < counter.length; i++) {
System.out.println(i + " letter words: " + counter[i]);
}//end for-loop
}//end if statement
}//end try
catch (IOException ex){
ex.printStackTrace();
}//end catch
}//end main method
}//end Main class
此外,如果您还看到类似以下内容。
Recompile with -Xlint: deprecation for details
不用担心; 它只是告诉您在编译时使用的选项,以获取有关在何处使用已弃用的内容的更多详细信息。
相关文章
使用 Java 删除文件夹
发布时间:2023/08/09 浏览次数:76 分类:Java
-
在本文中,我们将学习如何使用 Java 编程语言删除文件夹/目录。 有多种方法可以做到这一点。 让我们一一看看。使用Java的File类的delete()删除空文件夹
Java 中的多个动作监听器
发布时间:2023/08/09 浏览次数:178 分类:Java
-
本文我们将介绍如何在 Java 中创建多个动作监听器。在Java中,ActionListener是一个用于处理动作事件的类。 因此,Java 提供了这个接口,使用它我们可以找到用户单击按钮的位置,并生成一些事件
在 Java 中创建通用链表
发布时间:2023/08/09 浏览次数:186 分类:Java
-
本文我们将介绍如何在 Java 中创建一个通用的单链表。Java LinkedList 简介 LinkedList 是线性数据结构,它将数据存储在随机地址的节点中,并且意味着位于不连续的位置。
在JavaFX中使用setAlignment方法
发布时间:2023/08/09 浏览次数:129 分类:Java
-
在本文中,我们将了解如何以我们自己的格式对齐 HBox。 我们将看一个例子并逐行解释它以使其更容易理解。在 JavaFX 中使用 setAlignment() 方法
在 JavaFX 中使用 KeyEvent
发布时间:2023/08/09 浏览次数:70 分类:Java
-
KeyEvent 用于检测按键并在按下按键时执行特定的代码块。本文将展示如何创建按键事件并在用户按下按键时执行简单的代码。 我们还将看到一个简单的示例,以使其更容易理解。
在 JavaFX 中移动对象
发布时间:2023/08/09 浏览次数:199 分类:Java
-
在本文中,我们将向左、右、上、下四个方向移动对象。 为此,我们将使用以下代码。在 JavaFX 中移动对象 我们看一下下面的代码。 我们稍后会解释。
修复在 JRE 8 中使用 JavaFX 时的访问限制错误
发布时间:2023/08/09 浏览次数:95 分类:Java
-
本文将讨论如何修复在 JRE 8 中使用 JavaFX 时出现的访问限制错误。此错误主要发生在 Eclipse IDE 中; 我们的解决方案主要基于Eclipse。修复在 JRE 8 中使用 JavaFX 时的访问限制错误
JavaFX 中的 setOnAction 方法
发布时间:2023/08/09 浏览次数:169 分类:Java
-
在本文中,我们将了解如何为任何 UI 组件创建操作。 此外,我们将看到一个带有解释的示例,以使该主题更容易理解。在JavaFX中使用setOnAction方法
JavaFX 中的 setCellValueFactory 方法
发布时间:2023/08/09 浏览次数:138 分类:Java
-
在本文中,我们将讨论此方法并查看一个带有解释的示例。在 JavaFX 中使用 setCellValueFactory 方法 在下面的示例中,我们创建了一个包含一些数据的简单表。 我们示例的代码如下所示。