Java string转数组
SInput.addActionListener(newActionListener(){publicvoidactionPerformed(ActionEvente){...
SInput.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
boolean more = true;
while (more){
more = false;
String inWord = JOptionPane.showInputDialog("Enter the ID of the Symptoms");
try{
input = Integer.parseInt(inWord);
}catch(NumberFormatException e2){ more = true; }
}
}
});
这个是我界面设计中的一个部分,我想把string inword转换成一个int型的数组input,我的input是一个成员变量,再最开始声明了一个空的int型数组。
换句话说就是我想从界面输入一些数,然后存入input这个int型数组中。
谢谢
我试了input[i]=Integer.valueOf(strA[i]);这句还是报错了 展开
public void actionPerformed(ActionEvent e){
boolean more = true;
while (more){
more = false;
String inWord = JOptionPane.showInputDialog("Enter the ID of the Symptoms");
try{
input = Integer.parseInt(inWord);
}catch(NumberFormatException e2){ more = true; }
}
}
});
这个是我界面设计中的一个部分,我想把string inword转换成一个int型的数组input,我的input是一个成员变量,再最开始声明了一个空的int型数组。
换句话说就是我想从界面输入一些数,然后存入input这个int型数组中。
谢谢
我试了input[i]=Integer.valueOf(strA[i]);这句还是报错了 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询