我有一个IP地址的jlist和一个从jlist中保存所选值的方法
list.addListSelectionListener(new ListSelectionListener(){
public void valueChanged(ListSelectionEvent e){
s=(String)list.getSelectedValue();
}
});
我设置了按钮监听器
infoButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
SNMP client = new SNMP();
client.snmpGet(ServerFrame.s,"COMMUNAUTE_SERVEUR",".1.3.6.1.2.1.1.5.0");
client.snmpGet(ServerFrame.s,"COMMUNAUTE_SERVEUR","1.3.6.1.2.1.1.1.0");
client.snmpGet(ServerFrame.s,"COMMUNAUTE_SERVEUR",".1.3.6.1.2.1.1.3.0");
}
});
此行client.snmpGet(ServerFrame.s,"COMMUNAUTE_SERVEUR",".1.3.6.1.2.1.1.5.0");
会导致此错误:
java.lang.IllegalArgumentException:192.168.1.64 / 161
at org.snmp4j.smi.UdpAddress。(未知来源)
这是我在按钮侦听器中调用的snmpget
方法
public String snmpGet(String host, String community, String strOID) {
String strResponse="";
ResponseEvent response;
Snmp snmp;
try {
OctetString community1 = new OctetString(community);
host= host+"/"+"161";
Address tHost = new UdpAddress(host);
TransportMapping transport = new DefaultUdpTransportMapping();
transport.listen();
CommunityTarget comtarget = new CommunityTarget();
comtarget.setCommunity(community1);
comtarget.setVersion(SnmpConstants.version1);
comtarget.setAddress(tHost);
comtarget.setRetries(2);
comtarget.setTimeout(5000);
PDU pdu = new PDU();
pdu.add(new VariableBinding(new OID(strOID)));
pdu.setType(PDU.GET);
snmp = new Snmp(transport);
response = snmp.get(pdu,comtarget);
if(response != null) {
if(response.getResponse().getErrorStatusText().equalsIgnoreCase("Success")) {
PDU pduresponse=response.getResponse();
strResponse=pduresponse.getVariableBindings().firstElement().toString();
if(strResponse.contains("=")) {
String strNewResponse = null;
int len = strResponse.indexOf("=");
strNewResponse=strResponse.substring(len+1, strResponse.length());
System.out.println("The SNMP response to the OID requested is: " + strNewResponse);
}
}
} else {
System.out.println("Looks like a TimeOut occured ");
}
snmp.close();
} catch(Exception e) {
e.printStackTrace();
}
//System.out.println("Response="+strResponse);
return strResponse;
}
任何有关此错误的帮助,我知道,问题似乎是s变量
答案 0 :(得分:1)
仅仅是我或者IllegalArgumentException是否在您的IP地址中显示了额外的空间: java.lang.IllegalArgumentException:192.168.1.64 / 161
尝试添加.trim()调用以删除额外的空格:
更改
host= host+"/"+"161";
到
host= host.trim() + "/" + 161;
并查看是否可以避免IllegalArgumentException