本文介绍了覆盖已弃用的API。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

import java.io. *;


class InputTest

{

public static void main(String [] args抛出IOException

{

byte [] bytes = new byte [20];

BufferedInputStream bis = new BufferedInputStream(System.in);

DataInputStream dis = new DataInputStream(bis);

String str = dis.readLine();


DataOutputStream dos = new DataOutputStream(System.out);

dos.writeUTF(str.toUpperCase());


dos.close();


System.out.println(程序结束); //这不会打印


}

}
这是我尝试编译此代码帮助时的结果我出去了...... !!! Java \ jdk1.5.0 \bin> javac InputTest.java


注意:InputTest。 java使用或覆盖不推荐使用的API。

注意:使用-Xlint重新编译:弃用以获取详细信息。

import java.io.*;

class InputTest
{
public static void main(String []args) throws IOException
{
byte [] bytes = new byte[20];
BufferedInputStream bis = new BufferedInputStream(System.in);
DataInputStream dis = new DataInputStream(bis);
String str = dis.readLine();

DataOutputStream dos = new DataOutputStream(System.out);
dos.writeUTF(str.toUpperCase());

dos.close();

System.out.println("End of program"); // this willnot be printed

}
}
This is the result when i try to complie this code help me out...!!!Java\jdk1.5.0\bin>javac InputTest.java


Note: InputTest.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.

推荐答案




谢谢你的回复我只是java.i''m这个社区的新手。我不知道帖子的语法。

thank you for your reply i''m just a beginer in java.i''m new to this community.i don''t know the syntax for postings.




这是什么(重新编译-Xlint:弃用以获取详细信息。)意味着如何使用-Xlint重新编译tat?

what does this(Recompile with -Xlint:deprecation for details.) mean how to recompile tat with -Xlint????


这篇关于覆盖已弃用的API。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 14:39