Re: Problem in loading a text file to java aglet application.
Hi Andrew,
Thanks for your response.
Sorry I make a confusion about using Aglet application for Aglet. I
will correct myself hereafter.
This application is SWING application and not a applet. This is
working fine for me as standalone java application.
Herewith I have attached the code.
import javax.swing.*;
import javax.swing.event.*;
import java.awt.event.*;
import java.awt.*;
import java.lang.*;
import com.adventnet.snmp.ui.*;
import com.adventnet.snmp.mibs.*;
import com.adventnet.snmp.beans.*;
import java.io.*;
import java.net.*;
public class largetable1 extends JFrame
{
public static void main(String args[])
{
JFrame f = new JFrame("SNMP Table");
JScrollPane scrollpane;
SnmpTablePanel tablepanel = new SnmpTablePanel();
tablepanel.setTargetHost("localhost");
tablepanel.setCommunity("public");
try{
tablepanel.loadMibs("C:/Ravikumar/SoftWare/Aglets/Aglets2.0.2/
public/RFC1213-MIB");
tablepanel.setTableOID("ifTable");
}catch(Exception e)
{
System.out.println("ERROR");
}
scrollpane = new JScrollPane(tablepanel);
f.add(scrollpane);
f.setSize(500,500);
f.show();
}
}
Please help me out to resolve this issue in Aglet.
Look forward to hear from you.
Cheers
Ravikumar
On Apr 10, 6:22 pm, "Andrew Thompson" <u32984@uwe> wrote:
Andrew Thompson wrote:
..
tablepanel.loadMibs("C:/Ravikumar/SoftWare/Aglets/Aglets2.0.2/public/
RFC1213-MIB");
And that is a file.
Oops! That is a String that is a representation of
a file path and name as it might appear in a Windows
environment, as opposed to a file, or a (java.io.)File.
--
Andrew Thompsonhttp://www.athompson.info/andrew/
Message posted via JavaKB.comhttp://www.javakb.com/Uwe/Forums.aspx/java-general/200704/1