- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Adventnet SNMPAPI 开发 UDP 监听程序。现在我需要将监听数据保存到数据库中。当我这样做时,我遇到了错误。任何人都可以帮忙解决这个问题吗...
这是我的代码。
import com.adventnet.snmp.beans.*;
import com.adventnet.snmp.snmp2.*;
import com.adventnet.snmp.snmp2.usm.*;
import java.io.*;
import java.net.*;
import java.sql.*;
import java.util.regex.*;
public class trapreceiver {
private static int MIBS = 0;
private static int COMMUNITY = 1;
private static int PORT = 2;
private static int USER_NAME = 3;
private static int ENGID = 4;
private static int AUTH_PROTOCOL = 5;
private static int AUTH_PASSWORD = 6;
private static int PRIV_PASSWORD = 7;
private static int DEBUG = 8;
private static int CONTEXT_NAME = 9;
private static int CONTEXT_ID = 10;
private static int PRIV_PROTOCOL = 11;
private static String Data;
public static void main(String args[]) {
// Take care of getting options
String usage = "trapreceiver [-m MIB_files] [-c community] [-p port] [-u user] [-e engineID(1234.../0x1234...)] [-a authProtocol(MD5/SHA)] [-w auth_password] [-s priv_password] [-d] [-n contextName] [-i contextId] [ -pp priv_protocol(DES/AES-128/AES-192/AES-256/3DES) ]";
String options[] = { "-m" , "-c", "-p", "-u", "-e", "-a", "-w", "-s", "-d", "-n", "-i", "-pp" };
String values[] = { null, null, null, null, null, null, null, null, "None", null, null, null};
String DataReceived = null;
String userName = null;
int authProtocol = USMUserEntry.NO_AUTH;
String authPassword = new String ("");
String privPassword = new String ("");
String engineID = null;
int privProtocol = USMUserEntry.NO_PRIV;
byte secLevel = 0;
ParseOptions opt = new ParseOptions(args,options,values, usage);
if (opt.remArgs.length!=0) opt.usage_error();
// instantiate a receiver object
SnmpTrapReceiver receiver = new SnmpTrapReceiver();
//To load MIBs from compiled file
receiver.getMibOperations().setLoadFromCompiledMibs(true);
if (values[COMMUNITY] != null) receiver.setCommunity( values[COMMUNITY] );
try { // set trap port to listen on if specified - else port 162
if (values[PORT] != null) {
receiver.setPortWithExceptionMsg( Integer.parseInt(values[PORT]) );
} else {
System.out.println("Trying to set port 162 as the receiver port...");
receiver.setPortWithExceptionMsg( 162 );
}
if (values[USER_NAME] != null) {
userName = values[USER_NAME];
receiver.setPrincipal(userName);
}
if (values[ENGID] != null) {
engineID = values[ENGID];
if(engineID.startsWith("0x") || engineID.startsWith("0X"))
engineID = new String(gethexValue(values[ENGID]));
}
if (values[AUTH_PROTOCOL] != null) {
if(engineID == null) {
System.out.println("EngineID is missing");
opt.usage_error();
}
if ( values[AUTH_PROTOCOL].equals("SHA"))
authProtocol = USMUserEntry.SHA_AUTH;
else if ( values[AUTH_PROTOCOL].equals("MD5"))
authProtocol = USMUserEntry.MD5_AUTH;
else
authProtocol = USMUserEntry.NO_AUTH;
receiver.setAuthProtocol(authProtocol);
receiver.setTrapAuthEnable(true);
secLevel |= 0x01;
}
if (values[AUTH_PASSWORD] != null) {
if(engineID == null) {
System.out.println("EngineID is missing");
opt.usage_error();
}
if (secLevel == 0x01) {
authPassword = values[AUTH_PASSWORD];
receiver.setAuthPassword(authPassword);
}
else
opt.usage_error();
}
if(values[PRIV_PASSWORD] != null) {
if(engineID == null) {
System.out.println("EngineID is missing");
opt.usage_error();
}
if (secLevel == 0x01)
{
privPassword = values[PRIV_PASSWORD];
if(values[PRIV_PROTOCOL] != null)
{
if(values[PRIV_PROTOCOL].equals("AES-128"))
{
privProtocol = USMUserEntry.CFB_AES_128;
}
else if(values[PRIV_PROTOCOL].equals("AES-192"))
{
privProtocol = USMUserEntry.CFB_AES_192;
}
else if(values[PRIV_PROTOCOL].equals("AES-256"))
{
privProtocol = USMUserEntry.CFB_AES_256;
}
else if(values[PRIV_PROTOCOL].equals("3DES"))
{
privProtocol = USMUserEntry.CBC_3DES;
}
else if(values[PRIV_PROTOCOL].equals("DES"))
{
privProtocol = USMUserEntry.CBC_DES;
}
else
{
System.out.println(" Invalid PrivProtocol "+values[PRIV_PROTOCOL]);
opt.usage_error();
}
}
receiver.setPrivPassword(privPassword);
receiver.setPrivProtocol(privProtocol);
if(values[CONTEXT_NAME]!= null)
receiver.setContextName(values[CONTEXT_NAME]);
if(values[CONTEXT_ID]!= null)
receiver.setContextID((values[CONTEXT_ID]).getBytes());
secLevel |= 0x02;
}
else
opt.usage_error();
}
} catch (NumberFormatException ex) {
System.err.println("Invalid Integer Arg");
} catch (SnmpException se) {
System.err.println(se);
System.exit(1);
}
if(values[DEBUG].equals("Set"))
receiver.setDebug(true);
if(userName != null)
receiver.createUserEntry(engineID.getBytes(),secLevel);
if (values[MIBS] != null) try { // load MIB files
System.err.println("Loading MIBs: "+values[MIBS]);
receiver.loadMibs(values[MIBS]);
System.err.println("Done.");
} catch (Exception ex) {
System.err.println("Error loading MIBs: "+ex);
}
// we need to instantiate a trap listener to listen for trap events
TrapListener listener = new TrapListener() {
// This method is called when trap is received by SnmpTrapReceiver
public void receivedTrap(TrapEvent trap) {
System.out.println("Got a trap from: "+trap.getRemoteHost());
// print PDU details
String DataReceived = ((SnmpTrapReceiver)trap.getSource()).getMibOperations().toString(trap.getTrapPDU());
System.out.println(((SnmpTrapReceiver)trap.getSource())
.getMibOperations().toString(trap.getTrapPDU()) );
System.out.println("DataReceived :::: " + DataReceived);
Pattern p = Pattern.compile("\\STRING.*?)\\.");
Matcher m = p.matcher(DataReceived);
m.find();
Data = m.group(1);
System.out.println(Data);
/*Connection con = null;
String url = "jdbc:mysql://localhost:3306/";
String db = "snmp";
String driver = "com.mysql.jdbc.Driver";
Class.forName(driver);
con = DriverManager.getConnection(url + db,"root","root");
Statement st = con.createStatement();
String sql = "INSERT INTO DataReceived(data) " +
"VALUES ('"+m.group(1)+"')";
try
{
int val = st.executeUpdate(sql);
System.out.println("1 row affected");
catch (SQLException s)
{
System.out.println("SQL statement is not executed!");
}
}*/
if( trap.getTrapPDU().getCommand() == SnmpAPI.TRP_REQ_MSG)
{
com.adventnet.snmp.mibs.MibTrap trapDefn = // get trap defn
trap.getTrapDefinition();
if (trapDefn != null) // print name and description
System.out.println("Trap Name: "+trapDefn.getName()+
"\nDescr: "+trapDefn.getDescription());
}
else if( trap.getTrapPDU().getCommand() == SnmpAPI.TRP2_REQ_MSG)
{
com.adventnet.snmp.mibs.MibNode notification = trap.getNotificationDefinition();
if(notification != null)
System.out.println("Notification Name: "+notification.getLabel()+
"\nObjects: "+ notification.getObjects()+
"\nStatus: "+ notification.getStatus()+
"\nDescr: "+notification.getDescription()+
"\nParent: "+ notification.getParent());
}
}
/*
Connection con = null;
String url = "jdbc:mysql://localhost:3306/";
String db = "snmp";
String driver = "com.mysql.jdbc.Driver";
Class.forName(driver);
con = DriverManager.getConnection(url + db,"root","root");
Statement st = con.createStatement();
String sql = "INSERT INTO DataReceived(data) " +
"VALUES ('"+Data+"')";
int val = st.executeUpdate(sql);
//System.out.println("1 row affected");*/
};
receiver.addTrapListener(listener);
System.out.println("Trap Receiver started at port "+receiver.getPort());
}
private static byte[] gethexValue(String value)
{
byte temp;
byte[] Key=new byte[value.length()/2 - 1];
String ss,str;
ss = value.substring(2);
for(int i = 0; i < ss.length(); i+=2)
{
str = ss.substring(i,i+2);
temp = (byte)Integer.parseInt(str,16);
Key[i/2] = temp;
}
return Key;
}
}
感谢Adv..
谨致问候,希马钱德拉·C.
最佳答案
从异常中:
Exception in thread "Thread-1" java.lang.IllegalStateException: Nomatch found
at java.util.regex.Matcher.group(Matcher.java:468)
atsnmpv3trapd.callback(snmpv3trapd.java:305)
代码:
String DataReceived = ...
...
Pattern p = Pattern.compile("\\STRING.*?)\\.");
Matcher m = p.matcher(DataReceived);
m.find();
Data = m.group(1);
异常在 m.group(1)
行引发。 错误No match found at java.util.regex.Matcher.group(...)
只是说明接收到的字符串(变量DataReceived
)确实存在与任何地方的正则表达式都不匹配。
现在我相信您的代码还有其他内容。看一下 "\\STRING.*?)\\."
字符串,它是以下正则表达式:
\STRING.*?)\.
由于出现不匹配的结束 )
,这应该会产生错误。现在,即使您纠正了这一点,这个正则表达式也可能与您的想法不匹配。
第一个字符 \S
与字母 S
不匹配,而是字符类 \s
的否定版本(与空格)。这样,以 xTRING
或 #TRING
(依此类推)开头的字符串将与您的正则表达式匹配。
我相信您想要匹配序列 STRING
之后和字符 .
之前的字符串。为此,请使用正则表达式:
STRING(.*?)\.
因此模式为:
Pattern p = Pattern.compile("STRING(.*?)\\.");
现在,m.group(1);
将在匹配时起作用。
如果您想避免没有匹配项时出现异常,应检查 m.find()
的结果:
Pattern p = Pattern.compile("STRING(.*?)\\.");
Matcher m = p.matcher(DataReceived);
Data = null;
if (m.find()) {
Data = m.group(1);
}
注意:如果可以的话,请停止以大写开头变量名称。这不是 Java 约定。
关于java - 模式匹配器 IllegalStateException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15738275/
我有一个坦克射击弹药的游戏。我对这部分代码的目标是检查它们是否与“碰撞”磁贴发生碰撞,如果是,则将其和磁贴移除。 代码如下所示,每 1/60 秒检查一次: Iterator iterator = sh
我尝试使用 JSR-303 注释(类级别)和验证器实现为 play 2.0.1 编写自定义表单验证器。 不幸的是,当我提交表单并且验证失败时,我收到了一个 IllegalStateException,
根据answer of BalusC ,我用过 FacesContext.getCurrentInstance().getExternalContext().redirect(url); 在我的 @P
这个问题已经有答案了: Copy a stream to avoid "stream has already been operated upon or closed" (10 个回答) 已关闭 5
这个问题已经有答案了: Spring: getOutputStream() has already been called for this response (3 个回答) 已关闭 4 年前。 我正
我正在尝试将 Activity 转换为 FragmentActivty 对象,以便获得 FragmentManager 对象 public class Main extends ListActivit
我正在尝试使用可编辑的组合框,通过用户的某些击键从数据库中快速搜索客户端的功能。我想要的是,用户将输入一些字母,如果这些字母与某些客户端匹配,这些客户端将保留在组合框的当前数据模型中。 代码如下。请修
这个问题已经有答案了: You need to use a Theme.AppCompat theme (or descendant) with this activity. Change to Th
我正在使用 Android Studio 和 Genymotion 作为模拟器创建一个应用程序,其中我在 3 个 EditText 中输入数据,当我单击按钮将其存储在 sqlite 数据库中时,它不起
我正在为 Android 构建一个简单的消息应用程序,并且在发送短信时遇到一些问题。我第一次使用 OnlickListener 时,消息被发送并显示在我的 ListView 中。当我在 Activit
我了解到 collect() 和 forEach() 都是流终端操作,在同一个流上调用它们会抛出 非法状态异常。但是,以下代码可以成功编译并按升序打印每个字符串的长度。不会引发任何异常。怎么会这样?
我对 classcastException 和非法状态异常都有点困惑,因为在大多数情况下它们看起来都很相似。 我在这个java代码中遇到了一个问题 class consumer {
我正在尝试这个小计算器程序。当我调用calculateResult()方法时,我想在第二个操作数为零且运算符为除法时显示IllegalStateException错误。但尽管如此,我在calculat
Stacktrace Here 导入java.util.*; 公共(public)类 AccountClient { public static void main(String[] args) {
我正在使用 readEntity() 方法读取 JAVAX 响应,但我收到以下堆栈跟踪: java.lang.IllegalStateException: Entity input stream ha
我是安卓新手。我正在尝试进行简单的登录 Activity ,但当我单击“登录”按钮时出现运行时错误。我认为我没有正确获取数据。我已经检查过,SQLite 中有一个与该 PK 相对应的数据。 日志猫。
我正在创建一个登录页面,工程师可以通过以“engg”开头的用户名登录。问题出在登录页面,当我使用正确的密码提供正确的输入时,它会给出“非法状态异常”。在错误的输入中,它工作正常。就像当我在我的 ora
我正在使用一些现有的 Java 设备驱动程序软件,该软件使用 JavaCOMM 进行串行 I/O。我昨天看到它抛出一个异常,其中有一个 IllegalStateException - 端口从 publ
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我正在使用 Adventnet SNMPAPI 开发 UDP 监听程序。现在我需要将监听数据保存到数据库中。当我这样做时,我遇到了错误。任何人都可以帮忙解决这个问题吗... 这是我的代码。 impor
我是一名优秀的程序员,十分优秀!