Swing を使用して作成されたツールで、IP を Web アドレスに、またはその逆に変換しようとしています。アクションリスナー部分はこちら
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==check1)
{
String ipresult,queryip=inputip.getText();
try
{
InetAddress ip1=InetAddress.getByName(queryip);
ipresult=queryip.getHostName();
outputweb.setText(ipresult);
}
catch(Exception e1)
{
outputweb.setText("Please check the IP address");
}
}
if(e.getSource()==check2)
{
String webresult,queryweb=inputweb.getText();
try
{
InetAddress web1=InetAddress.getByName(queryweb);
webresult=queryweb.getHostAddress();
outputip.setText(webresult);
}
catch(Exception e2)
{
}
}
}
私はEclipseでこれを行っているので、エラーは行に表示さ
れwebresult=queryweb.getHostAddress();
、ipresult=queryip.getHostName();
method is undefined for the type String
私が間違っていることは何ですか?誰かが必要な場合は、完全なコードを投稿できます。