int t = Integer.parseInt(str); 怎么同时判断 str 是合法的字符,又要判断 str 不超出整数范围!!
importjava.io.BufferedInputStream;importjava.io.BufferedReader;importjava.io.IOExcept...
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class InputString {
/**
* 编写一个程序,它先将键盘上输入的一个字符串转换成十进制整数, 然后打印出这个十进制整数对应的二进制形式。
* 这个程序要考虑输入的字符串不能转换成一个十进制整数的情况, 并对转换失败的原因要区分出是数字太大,还是其中包含有非数字字符的情况。
*
* @param args
* @throws IOException
* @throws IOException
*/
InputStream in = null;
BufferedReader br = null;
public static void main(String[] args) throws IOException {
InputString is = new InputString();
is.Input();
}
void Input() throws IOException {
in = new BufferedInputStream(System.in);
br = new BufferedReader(new InputStreamReader(in));
int t = 0;
String str = br.readLine();
/**
* 判断是否含有非 数字 字符
*/
try {
t = Integer.parseInt(str);
} catch (NumberFormatException e) {
System.out.println("输入的数据含有 非数字 字符!");
System.exit(-1);
}
/**
* 判断是否输入超出整数范围
*/
if (str.length() > 11) {
System.out.println("输入的数字超过整数范围");
} else if (t > 2147438647) {
System.out.println("输入的数字超过整数范围");
System.exit(-1);
} else
//输出二进制数据
System.out.println(Integer.toBinaryString(t));
}
} 展开
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
public class InputString {
/**
* 编写一个程序,它先将键盘上输入的一个字符串转换成十进制整数, 然后打印出这个十进制整数对应的二进制形式。
* 这个程序要考虑输入的字符串不能转换成一个十进制整数的情况, 并对转换失败的原因要区分出是数字太大,还是其中包含有非数字字符的情况。
*
* @param args
* @throws IOException
* @throws IOException
*/
InputStream in = null;
BufferedReader br = null;
public static void main(String[] args) throws IOException {
InputString is = new InputString();
is.Input();
}
void Input() throws IOException {
in = new BufferedInputStream(System.in);
br = new BufferedReader(new InputStreamReader(in));
int t = 0;
String str = br.readLine();
/**
* 判断是否含有非 数字 字符
*/
try {
t = Integer.parseInt(str);
} catch (NumberFormatException e) {
System.out.println("输入的数据含有 非数字 字符!");
System.exit(-1);
}
/**
* 判断是否输入超出整数范围
*/
if (str.length() > 11) {
System.out.println("输入的数字超过整数范围");
} else if (t > 2147438647) {
System.out.println("输入的数字超过整数范围");
System.exit(-1);
} else
//输出二进制数据
System.out.println(Integer.toBinaryString(t));
}
} 展开
2个回答
展开全部
public class Test {
public static void main(String[] args) {
String s ="-122222223999999";
if(!s.matches("-?\\d+")){
System.out.println("包含非数字");
}else{
try{
Integer i = Integer.parseInt(s);
}catch(Exception e){
System.out.println("数字太大");
}
}
}
}
public static void main(String[] args) {
String s ="-122222223999999";
if(!s.matches("-?\\d+")){
System.out.println("包含非数字");
}else{
try{
Integer i = Integer.parseInt(s);
}catch(Exception e){
System.out.println("数字太大");
}
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询