当前位置: 技术问答>java相关
在线求教一个问题
来源: 互联网 发布时间:2015-10-27
本文导语: import javax.swing.*; public class InputTest { public static void main(String[] args) { // get first input String name = JOptionPane.showInputDialog ("What is your name?"); // get second inp...
import javax.swing.*;
public class InputTest
{
public static void main(String[] args)
{
// get first input
String name = JOptionPane.showInputDialog
("What is your name?");
// get second input
String input = JOptionPane.showInputDialog
("How old are you?");
// convert string to integer value
int age = Integer.parseInt(input);
// display output on console
System.out.println("Hello, " + name +
". Next year, you'll be " + (age + 1));
System.exit(0);
}
}
在用javac编译的时候,通不过。
InputTest.java:6: Package javax.swing not found in import.
import javax.swing.*;
^
1 error
不知道是什么问题。clathpath应该没有问题,因为helloworld一类的程序是没有问题的。
另外程序也应该没有问题,是一本书的源代码。
public class InputTest
{
public static void main(String[] args)
{
// get first input
String name = JOptionPane.showInputDialog
("What is your name?");
// get second input
String input = JOptionPane.showInputDialog
("How old are you?");
// convert string to integer value
int age = Integer.parseInt(input);
// display output on console
System.out.println("Hello, " + name +
". Next year, you'll be " + (age + 1));
System.exit(0);
}
}
在用javac编译的时候,通不过。
InputTest.java:6: Package javax.swing not found in import.
import javax.swing.*;
^
1 error
不知道是什么问题。clathpath应该没有问题,因为helloworld一类的程序是没有问题的。
另外程序也应该没有问题,是一本书的源代码。
|
把 tools.jar,dt.jar 加入到 classpath