GetColumn.java.txt
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
- /* $Id: GetColumn.java,v 1.1 2002/06/15 14:41:18 ram Exp $ */
- *
- /* GetColumn.java * Copyright (c) 1996-2003 AdventNet, Inc. All Rights Reserved.
- * Please read the associated COPYRIGHTS file for more details.
- */
- *
- *
- */
- import com.adventnet.snmp.beans.*;
- public class GetColumn {
- public static void main(String args[]) {
- if (args.length < 1)
- {
- System.out.println ("Usage : java getrow tableoid");
- System.exit (0);
- }
- String tableoid = args[0];
- SnmpTable table = new SnmpTable();
- table.setTargetHost("localhost);
- try
- {
- table.loadMibs("RFC1213-MIB");
- table.setTableOID(tableoid);
- }
- catch (Exception ex)
- {
- System.err.println("Error: "+ex);
- }
- System.out.println(table.getColumn(1));
- System.out.println("Getting 1st column: " + sb);
- System.exit(0);
- }
- }