Why am I receiving Null pointer Exception Error.

why am I receiving Null pointer Exception Error.
Hi I am developing a code for login screen. There is no syntex error as such ut I am receving the aove mentioned error. Can some one please help me ??
------------ Main.java------------------
import java.io.*;
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
public class Main implements ActionListener
Frame mainf;
MenuBar mb;
MenuItem List,admitform,inquiry,exit,helpn;
Menu newm,update,help;
Inquiry iq;
Admit ad;
// HosHelp hp;
Howuse hu;
Register reg;
Main()
mainf=new Frame(" Engg College V/S Mumbai University ");
     mb=new MenuBar();
     newm=new Menu(" New ");
     update=new Menu(" Update ");
     help=new Menu(" Help ");
     List=new MenuItem("List");
     admitform=new MenuItem("Admit");
     inquiry=new MenuItem("Inquiry");
     exit=new MenuItem("Exit");
     helpn=new MenuItem("How to Use?");
newm.add(List);
               newm.add(admitform);
newm.add(inquiry);
               newm.add(exit);
     help.add(helpn);
          mb.add(newm);
          mb.add(update);
          mb.add(help);
mainf.setMenuBar(mb);
               exit.addActionListener(this);
               List.addActionListener(this);
     inquiry.addActionListener(this);
     admitform.addActionListener(this);
helpn.addActionListener(this);
     mainf.setSize(400,300);
     mainf.setVisible(true);
public void actionPerformed(ActionEvent ae)
if (ae.getSource()==List)
          reg=new Register();
     if(ae.getSource()==inquiry)
     iq=new Inquiry();
if(ae.getSource()==admitform)
     ad=new Admit();
          if(ae.getSource()==helpn)
          hu=new Howuse();
          if(ae.getSource()==exit)
     mainf.setVisible(false);
public static void main(String args[])
          new Main();
-------------Register.java---------------------------
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
public class Register implements ActionListener//,ItemListener
Label id,name,login,pass,repass;
Button ok,newu,cancel,check;
Button vok,iok,lok,mok,sok; //buttons for dialog boxes
TextField idf,namef,loginf,passf,repassf;
Dialog valid,invlog,less,mismat,acucreat;
Frame regis;
Checkbox admin,limit;
CheckboxGroup type;
DBconnect db;
Register()
     db=new DBconnect();
regis=new Frame("Registeration Form");
          type=new CheckboxGroup();
          admin=new Checkbox("Administrator",type,true);
          limit=new Checkbox("Limited",type,false);
          id=new Label("ID :");
name=new Label("Name :");
     login=new Label("Login :");
     pass=new Label("Password :");
     repass=new Label("Retype :");
idf =new TextField(20); idf.setEnabled(false);
     namef=new TextField(30); namef.setEnabled(false);
loginf=new TextField(30); loginf.setEnabled(false);
     passf=new TextField(30); passf.setEnabled(false);
     repassf=new TextField(30); repassf.setEnabled(false);
ok=new Button("OK"); ok.setEnabled(false);
     newu=new Button("NEW");
cancel=new Button("Cancel");
     check=new Button("Check Login"); check.setEnabled(false);
vok=new Button("OK");
     iok=new Button("OK");
          lok=new Button("OK");
          mok=new Button("OK");
          sok=new Button("OK");
valid=new Dialog(regis,"Login name is valid !");
     invlog=new Dialog(regis,"Login name already exist!");
     less=new Dialog(regis,"Password is less than six characters !");
mismat=new Dialog(regis,"password & retyped are not matching !");
acucreat=new Dialog(regis,"You have registered successfully !");
     regis.setLayout(null);
//     regis.setBackground(Color.orange);
valid.setLayout(new FlowLayout());
     invlog.setLayout(new FlowLayout());
     less.setLayout(new FlowLayout());
     mismat.setLayout(new FlowLayout());
acucreat.setLayout(new FlowLayout());
id.setBounds(35,50,80,25); //(left,top,width,hight)
idf.setBounds(125,50,40,25);
name.setBounds(35,85,70,25);
namef.setBounds(125,85,150,25);
login.setBounds(35,120,80,25);
loginf.setBounds(125,120,80,25);
check.setBounds(215,120,85,25);
     pass.setBounds(35,155,80,25);
passf.setBounds(125,155,80,25);
repass.setBounds(35,190,80,25);
repassf.setBounds(125,190,80,25);
admin.setBounds(35,225,100,25);
limit.setBounds(145,225,100,25);
          ok.setBounds(45,265,70,25);
     newu.setBounds(135,265,70,25);
cancel.setBounds(225,265,70,25);
     passf.setEchoChar('*');
repassf.setEchoChar('*');
     regis.add(id);
     regis.add(idf);
regis.add(name);
     regis.add(namef);
     regis.add(login);
     regis.add(loginf);
     regis.add(check);
regis.add(pass);
     regis.add(passf);
regis.add(repass);
     regis.add(repassf);
     regis.add(ok);
     regis.add(newu);
     regis.add(cancel);
regis.add(admin);
     regis.add(limit);
valid.add(vok);
     invlog.add(iok);     
     less.add(lok);
     mismat.add(mok);
acucreat.add(sok);
ok.addActionListener(this);
     newu.addActionListener(this);
check.addActionListener(this);
cancel.addActionListener(this);
     // limit.addItemListener(this);
     //admin.addItemListener(this);
          vok.addActionListener(this);
          iok.addActionListener(this);
     lok.addActionListener(this);
     mok.addActionListener(this);
     sok.addActionListener(this);
regis.setLocation(250,150);
regis.setSize(310,300);
regis.setVisible(true);
     public void actionPerformed(ActionEvent ae)
     if(ae.getSource()==check)
          try{
               String s2=loginf.getText();
ResultSet rs=db.s.executeQuery("select* from List");
                    while(rs.next())
               if(s2.equals(rs.getString(2).trim()))
//                    invlog.setBackground(Color.orange);
                         invlog.setLocation(250,150);
                         invlog.setSize(300,100);
               cancel.setEnabled(false);
ok.setEnabled(false);
check.setEnabled(false);
                    invlog.setVisible(true);
                         break;
                    else
                    //     valid.setBackground(Color.orange);
                         valid.setLocation(250,150);
                         valid.setSize(300,100);
               cancel.setEnabled(false);
ok.setEnabled(false);
check.setEnabled(false);
               valid.setVisible(true);
                    }catch(Exception e)
               e.printStackTrace();
if(ae.getSource()==newu)
     try{
          ResultSet rs=db.s.executeQuery("select max(ID) from List");
     while(rs.next())
String s1=rs.getString(1).trim();
               int i=Integer.parseInt(s1);
i++;
               String s2=""+i;
idf.setText(s2);
               newu.setEnabled(false);
               namef.setText(""); namef.setEnabled(true);
          loginf.setText(""); loginf.setEnabled(true);
          passf.setText(""); passf.setEnabled(true);
          repassf.setText(""); repassf.setEnabled(true);
          ok.setEnabled(true);
               check.setEnabled(true);
               }catch(Exception e)
          e.printStackTrace();
     if(ae.getSource()==ok)
          try
          String s1=idf.getText();
          String s2=loginf.getText();
          String s3=passf.getText();
     String s4=repassf.getText();
     int x=Integer.parseInt(s1);
     int t;
     if(type.getSelectedCheckbox()==admin)
          t=1;
          else
          t=0;
ResultSet rs=db.s1.executeQuery("select* from List");
               while(rs.next())
               if(s2.equals(rs.getString(2).trim()))
                    invlog.setBackground(Color.orange);
                    invlog.setLocation(250,150);
                    invlog.setSize(300,100);
               cancel.setEnabled(false);
ok.setEnabled(false);
check.setEnabled(false);
                    invlog.setVisible(true);
                    break;
               else
                    if (s3.length()<6)
                    less.setBackground(Color.orange);
                         less.setLocation(250,150);
                         less.setSize(300,100);
               ok.setEnabled(false);
                    cancel.setEnabled(false);
                    check.setEnabled(false);
                    less.setVisible(true);
else if(!(s3.equals(s4)))
                    mismat.setBackground(Color.orange);
                    mismat.setLocation(250,150);
                    mismat.setSize(300,100);
                    ok.setEnabled(false);
                    cancel.setEnabled(false);
                    check.setEnabled(false);
                    mismat.setVisible(true);
                    else
db.s1.execute("insert into User values("+x+",'"+s2+"','"+s3+"',"+t+")");
                    acucreat.setBackground(Color.orange);
                    acucreat.setLocation(250,150);
                    acucreat.setSize(300,100);
                    regis.setVisible(false);
                    acucreat.setVisible(true);
               }//else
          }//while
               } //try
          catch(Exception e1)
          // e1.printStackTrace();
          if (ae.getSource()==cancel)
          regis.setVisible(false);
          if (ae.getSource()==vok)
          ok.setEnabled(true);
               cancel.setEnabled(true);
check.setEnabled(true);
               valid.setVisible(false);
          if (ae.getSource()==iok)
          ok.setEnabled(true);
               cancel.setEnabled(true);
check.setEnabled(true);
               invlog.setVisible(false);
          if (ae.getSource()==lok)
          less.setVisible(false);
               cancel.setEnabled(true);
ok.setEnabled(true);
check.setEnabled(true);
          if (ae.getSource()==mok)
          mismat.setVisible(false);
               cancel.setEnabled(true);
ok.setEnabled(true);
check.setEnabled(true);
if (ae.getSource()==sok)
          acucreat.setVisible(false);
          ok.setEnabled(false);
               newu.setEnabled(true);
               regis.setVisible(true);
     public static void main(String args[])
     new Register();
-----------DBConnect.java------------------------------------
import java.sql.*;
public class DBconnect
Statement s,s1;
Connection c;
public DBconnect()
try
     Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
          c=DriverManager.getConnection("jdbc:odbc:Sonal");
          s=c.createStatement();
s1=c.createStatement();
     catch(Exception e)
     e.printStackTrace();
----------Login.java----------------
import java.awt.*;
import java.awt.event.*;
import java.sql.*;
public class Login implements ActionListener
Frame log;
Label login,pass;
TextField loginf,passf;
Button ok,cancel;
Dialog invalid;
Button iok;
Register reg;
DBconnect db;
Main m;
Login()
db=new DBconnect();
     log=new Frame();
     log.setLocation(250,210);
     login=new Label("Login :");
pass=new Label("Password :");
     loginf=new TextField(20);
     passf=new TextField(20);
     passf.setEchoChar('*');
     ok=new Button("OK");
     // newu=new Button("New User");
     cancel=new Button("CANCEL");
     iok=new Button(" OK ");
invalid=new Dialog(log,"Invalid User!");
//log.setBackground(Color.cyan);
//log.setForeground(Color.black);
     log.setLayout(null);
     // iok.setBackground(Color.gray);
     invalid.setLayout(new FlowLayout());
     login.setBounds(35,50,70,25); //(left,top,width,hight)
     loginf.setBounds(105,50,100,25);
     pass.setBounds(35,85,70,25);
     passf.setBounds(105,85,70,25);
     ok.setBounds(55,130,70,25);
// newu.setBounds(85,120,80,25);
cancel.setBounds(145,130,70,25);
log.add(login);
log.add(loginf);
log.add(pass);
log.add(passf);
log.add(ok);
// log.add(newu);
log.add(cancel);
     invalid.add(iok);//,BorderLayout.CENTER);
ok.addActionListener(this);
// newu.addActionListener(this);
cancel.addActionListener(this);
     iok.addActionListener(this);
log.setSize(300,170);
log.setVisible(true);
public void actionPerformed(ActionEvent a)
if(a.getSource()==ok)
     try{
          String l=loginf.getText();
          String p=passf.getText();
          ResultSet rs=db.s.executeQuery("select * from List");
          while(rs.next())
          if(l.equals(rs.getString(2).trim())&& p.equals(rs.getString(3).trim()))
                    String tp=rs.getString(4).trim();
                         int tp1=Integer.parseInt(tp);
log.setVisible(false);
if(tp1==1)
                         m=new Main();
                    // m.List.setEnabled(true);
                         else
                         m=new Main();
                         m.List.setEnabled(false);
                    break;
else
               invalid.setBackground(Color.orange);
               invalid.setSize(300,100);
               invalid.setLocation(250,210);
               cancel.setEnabled(false);
          ok.setEnabled(false);
               invalid.setVisible(true);
               }catch(Exception e1)
               e1.printStackTrace();
     if (a.getSource()==cancel)
     log.setVisible(false);
     if (a.getSource()==iok)
     invalid.setVisible(false);
     loginf.setText("");
     passf.setText("");
     cancel.setEnabled(true);
ok.setEnabled(true);
     public static void main(String[] args)
     new Login();
-------------inquiry.java---------------------------------
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import java.util.Date;
import java.text.*;
import java.sql.*;
public class Inquiry implements ActionListener
Frame inqry;
Label name,addr;
TextField namef,addrf;
Button ok,cancel,dok;
Dialog invalid;
Frame result; //Result of the inquiry....
Label lrname,lraddr,lward,lrdate,lcdate;
TextField rname,raddr,ward,rdate,cdate;
Date d;
DateFormat df;
Button rok,rcancel;
Dialog success;
Button rdok;
DBconnect db;
Inquiry()
          db=new DBconnect();
          inqry=new Frame("Inquiry Form");
          inqry.setLayout(null);
inqry.setBackground(Color.cyan);
          name=new Label(" NAME ");
          addr=new Label("ADDRESS");
          namef=new TextField(20);
          addrf=new TextField(20);
          ok=new Button("OK");
          cancel=new Button("CANCEL");
          dok=new Button("OK");
          invalid=new Dialog(inqry,"Invalid Name or Address !");
          invalid.setSize(300,100);
     invalid.setLocation(300,180);
          invalid.setBackground(Color.orange);
          invalid.setLayout(new FlowLayout());
result=new Frame(" INQUIRY RESULT "); //Result Window......
result.setLayout(null);
result.setBackground(Color.cyan);
lcdate=new Label(" DATE ");
     lrname=new Label(" NAME ");
lraddr=new Label(" ADDRESS ");
     lward=new Label(" WARD ");
     lrdate=new Label(" ADMIT-DATE ");
cdate=new TextField(10);
     rname=new TextField(20);
rname.setEnabled(false);
     raddr=new TextField(20);
     raddr.setEnabled(false);
     ward=new TextField(20);
     ward.setEnabled(false);
     rdate=new TextField(10);
     rdate.setEnabled(false);
     cdate=new TextField(20);
     d=new Date();
     df=DateFormat.getDateInstance(DateFormat.MEDIUM,Locale.KOREA);
     cdate.setText(df.format(d));
     cdate.setEnabled(false);
rok=new Button(" OK ");
     rcancel=new Button("CANCEL");
          name.setBounds(40,50,50,25);
namef.setBounds(120,50,130,25);
addr.setBounds(40,100,60,25);
addrf.setBounds(120,100,80,25);
ok.setBounds(60,145,70,25);
          cancel.setBounds(140,145,70,25);
          lcdate.setBounds(200,50,60,25); //Result Window......
cdate.setBounds(270,50,80,25);      
lrname.setBounds(35,85,70,25);
rname.setBounds(140,85,180,25);
lraddr.setBounds(35,120,80,25);
     raddr.setBounds(140,120,100,25);
lward.setBounds(35,155,80,25);
ward.setBounds(140,155,100,25);
lrdate.setBounds(30,190,80,25);
rdate.setBounds(140,190,80,25);
rok.setBounds(70,240,70,25);
rcancel.setBounds(170,240,70,25);
          inqry.add(name);
          inqry.add(namef);
          inqry.add(addr);
          inqry.add(addrf);
          inqry.add(ok);
          inqry.add(cancel);
invalid.add(dok);
     result.add(lcdate); //Result Window......
     result.add(cdate);
          result.add(lrname);
          result.add(rname);
          result.add(lraddr);
          result.add(raddr);
          result.add(lward);
          result.add(ward);
          result.add(lrdate);
          result.add(rdate);
          result.add(rok);
          result.add(rcancel);
     ok.addActionListener(this);
     cancel.addActionListener(this);
     dok.addActionListener(this);
rok.addActionListener(this); //Result Window......
     rcancel.addActionListener(this);
     inqry.setSize(280,180);
     inqry.setLocation(300,180);
     inqry.setVisible(true);
          result.setSize(400,280); //Result Window......
     result.setLocation(200,150);
     result.setVisible(false);
          public void actionPerformed(ActionEvent ae)
               if(ae.getSource()==ok)
               try
                         String nm=namef.getText();
                         String ad=addrf.getText();
                         inqry.setVisible(false);
                         ResultSet rs=db.s.executeQuery("select * from Billinformation");
                         while(rs.next())
                              String nm1=rs.getString(2).trim();
                              String ad1=rs.getString(3).trim();
                              int k=0;
                              if((nm1.equals(nm))&&(ad1.equals(ad)))
                         String adm=rs.getString(5).trim();
                         String wr=rs.getString(6).trim();
                         String bd=rs.getString(8).trim();
                              String wrb=wr+"-"+bd;
result.setVisible(true);
                              rname.setText(nm1);
                         raddr.setText(ad1);
                         ward.setText(wrb);
                         rdate.setText(adm);
k=1;
                              break;
                              }//if
                         else if(k==1)
                         invalid.setVisible(true);
                         }//while
}//try
                         catch(Exception e)
                         e.printStackTrace();
                    } //getsource ==ok
               if(ae.getSource()==cancel)
inqry.setVisible(false);
                    if(ae.getSource()==rok) //Result Window......
                    namef.setText("");
                         addrf.setText("");
                         result.setVisible(false);
                    inqry.setVisible(true);
if(ae.getSource()==rcancel)
result.setVisible(false);
                    if(ae.getSource()==dok)
                    namef.setText("");
                         addrf.setText("");
                         invalid.setVisible(false);
                         inqry.setVisible(true);
     public static void main(String args[])
          new Inquiry();
PLease Help me !!
I need this urgently.

can you explain what your program tries to do... and
at where it went wrong..Sir,
We are trying to make an project where we can make a person register in our data base & after which he/she can search for other user.
The logged in user can modify his/her own data but can view other ppl's data.
We are in a phase of registering the user & that's where we are stuck. The problem is that after the login screen when we hit register (OK- button) the data are not getting entered in the data base.
Can u please help me??
I am using "jdk1.3' - studnet's edition.
I am waiting for your reply.
Thanks in advance & yr interest.

Similar Messages

  • Incomplete instances for multiuser login giving null pointer exception error

    Hi
    I am facing one problem about Weblogic workflow. We have developed an application
    where number of users logs in simultaneouly.
    When a user logs in, one instance of workflow gets created. So when more than one
    user logs in, that many instanaces gets created. But it gives us the error like "Null
    pointerexception". This is beacuse The instanaces which gets created were not getting
    completed, they are incomplete. And when I delete these incomplete instances and
    try to login one after another user, it works fine. But again when two or more users
    logs in at same time we get the same error.
    Can you please help me out solving this problem.
    Regards,
    Rajesh Patil

    I have just found out that when this error appear, a folder called splash is created in the same directory as my project folder and the application that I just ran has appeared in there and I can run it from the files in that folder. I can't see anywhere in my code which specifies sending these files to a splash folder.
    Does anyone know why this might happen and if this is related to the Null Pointer Exception Error?
    -Mark

  • Null Pointer Exception Error's in WebDynpro Java

    Hi All,
    How Types are coming Null Pointer Exception Error's in WebDynpro Java, Please provide the types.of Errors.
    Ex. Cardinality Type not correct etc...
    Thanks,
    Bye,
    Vijay Hari.

    HI
      Null Pointer Exception can occur in may instances , for suppose
      1) when  you create a Value Node with some attribute which has cardinality , and you have not
      initialized the Node , then it would through  Null Pointer exception ,
      2) when you integrate the RFC and parameters you pass as input to the RFC are not set correctly
          then there could be null pointer when you execute the RFC
      3>or may be when you doesnot bind the node when using webservice then there could be null pointer exception
    and there could be many occurances  for the exception

  • Xi 3.1 SP3 giving java null pointer exception error on scheduling webi

    after we have the system uptime running for a few days and have schedule webi jobs successfully for a few days, we constant get the message java null pointer exception error on scheduling webi.
    This only have days after restarting the environment.
    Seems to be coming up after scheduling a certain amount of webi reports.
    Only doing a stop all services and restart resolves the issue.
    XI 3.1 SP3
    SAP IK Sp3
    Tomcat55
    HPUX-IA64 (Hpunix) platform.

    Hello, I have the same issue.  If someone gives you an answer please let me know how to fix it.

  • Null Point Exception Error

    Hi All
            I have to add an input field which will accept email Id from users. This field has to be kept mandatory. I have kept a check on the value entered. If the user does not enter any value, an error message should be displayed. Below is the code that I have written. Whenever, the user keeps this field blank and submits the form, null point exception error is displayed.
    Please help how to overcome this problem
    email = wdContext.currentContextElement().getEmail_Id();     
             try{
              if (wdContext.currentContextElement().getEmail_Id().equals("") )
                   IWDMessageManager msg = wdThis.wdGetAPI().getComponent().getMessageManager();
                   msg.reportMessage(IMessageTender_ResignationComp.PERSONAL_EMAIL_ID,new Object[]{"Please enter correct Email Id"},true);
         else 

    Hi,
    Change the following code to
    email = wdContext.currentContextElement().getEmail_Id();
    try{
    if (wdContext.currentContextElement().getEmail_Id().equals("") )
    IWDMessageManager msg = wdThis.wdGetAPI().getComponent().getMessageManager();
    msg.reportMessage(IMessageTender_ResignationComp.PERSONAL_EMAIL_ID,new Object[]{"Please enter correct Email Id"},true);
    if (wdContext.currentContextElement() != null)
        email = wdContext.currentContextElement().getEmail_Id();
    if ( email.equals("") )
    IWDMessageManager msg = wdThis.wdGetAPI().getComponent().getMessageManager();
    msg.reportMessage(IMessageTender_ResignationComp.PERSONAL_EMAIL_ID,new Object[]{"Please enter correct Email Id"},true);
    Regards
    Ayyapparaj

  • Receiving null pointer exception

    Created the following program to read and output a file:
    import java.io.*;
    import java.util.StringTokenizer;
    public class ReadSource {
    public static void main(String[] arguments) {
         StringTokenizer st1;
         try {
              FileReader file = new
                        FileReader("C:/upload/DS121002.csv");
                        BufferedReader buff = new BufferedReader(file);
                        boolean eof = false;
                        while (!eof) {
                        String line = buff.readLine();
                             if (line == null)
                             eof = true;
                             else
                             System.out.println(line);
                                  st1 = new StringTokenizer(line,",");
                                  System.out.println("Token 1: " + st1.nextToken());
                                  System.out.println("Token 2: " + st1.nextToken());
                        buff.close();
              } catch (IOException e) {
              System.out.println("Error -- " + e.toString());
    I am receiving the following error message when the program completes:
    Exception in thread "main" java.lang.NullPointerException
    at java.util.StringTokenizer.<init>(StringTokenizer.java:122)
    at java.util.StringTokenizer.<init>(StringTokenizer.java:138)
    at ReadSource.main(ReadSource.java:18)
    What do I need to change to prevent this error?

    You coded:
    if (line == null)
    eof = true;
    else
    do something else;
    // then, regardless of the above,
    st1 = new StringTokenizer(line,","); // line is still null here
    So there's the problem.

  • Receiving null pointer exception when calling a method of the object

    class Employee {
         private String name;
         private int age;
         private double salary;
         private String dob;
         public void setEmp(String name, int age, double salary, String dob){ //setter method
              this.name = name;
              this.age = age;
              this.salary = salary;
              this.dob = dob;
         public Employee getEmp(){ //getter method
              return this;
    public class EmployeeDemo {
         public static void main(String[] args) {
              String str1 = "John_Stone251000.0005051975";
              String str2 = "Jane Doe  242000.0006071980";
              String str3 = "Will Smith356000.5005051960";
              String[] str = {str1,str2,str3};
              Employee[] emp = new Employee[3];
              String emp_name, emp_dob;
              int emp_age;
              double emp_sal;
              for(int i=0;i<str.length;i++){
                   emp_name=str.substring(0,10);
                   emp_age=Integer.parseInt(str[i].substring(10,12));
                   emp_sal=Double.parseDouble(str[i].substring(12,19));
                   emp_dob=str[i].substring(19,26);
                   emp[i].setEmp(emp_name,emp_age,emp_sal,emp_dob); //NullPointerException error
    After compiling both classes and running:
    output error: Exception in thread "main" java.lang.NullPointerException
            at EmployeeDemo.main(EmployeeDemo.java:21)I don't understand why I am getting the NullPointerException error and how to fix it?

    I expect the following program to output the String "Victor Shakapopulis":
    public class Test
      public static void main (String[] args)
        String[] data = new String[3];
        System.out.println(data[0]);
    }Will it? Or will the program output the String "hello world". If neither of those, what will the program output?
    Have the program output data[1] and data[2] as well. What can you conclude about the contents of an array after you create it?

  • REG : Null Pointer Exception for RFC values

    Hi All,
    I am facing peculiar erro in code.I need to check the null entries in SAP server then it should be replaced by space and if not null then should be replaced by the value in backend.But it is throwing null pointer exception
    I am using equalsignore case(null) and trim for space.
    I am not getting why its is throwing null pointer  exception.Kindly advise
    Regards,
    Anupama

    Hi
    Use
    String f = null ;
    if(f!==null)
    Wdcomponent.getMessageManager.ReportException ("this will cause null pointer exception  "+ f.length());
    Better to give it any Constant like
    priveate static final String NULL_CHECK  = "DEL_VAL12";
    rather than space ,at the time of chceking see if it has  DEL_VAL12 if true then put the actual data else let it be there.
    Best Regards
    Satish Kumar

  • Null pointer Exception with Float.parseFloat

    I need to assign a float value from a database to a variable recurrently throughout a while loop. but i am getting a null pointer exception error:
    while ( rs.next() )
         out.println("<TR>");
              float corr = Float.parseFloat((String) request.getParameter("echo"));
              out.println("<center><TD><b><font color = #990000>" + rs.getString("race_number") + "</b></TD>");
              out.println("<center><TD><b><font color = #990000>" + rs.getString("sail_number") + "</b></TD>");
              out.println("<center><TD><b><font color = #990000>" + rs.getString("finish_time_elapsed") + "</b></TD>");
              out.println("<center><TD><b><font color = #990000>" + rs.getString("echo") + "</b></TD>");
              out.println("</TR>");
    I've also tried:
    float corr = Float.parseFloat( String request.getParameter("echo"));
    float corr = 0;
    corr Float.parseFloat((String) request.getParameter("echo"));
    corr = echo;
    corr = request.getParameter("echo");
    corr = rs.getString("echo");
    corr = Float.parseFloat(request.getParameter("echo"));
    temp = rs.getFloat("Problem_Description");
    Any ideas Please!!!

    Null pointer exception means that the value you are trying to turn into a Float is null. Probably request.getParameter("echo") returns null.
    Is "echo" a request parameter, or a field you want to get from the database?
    request.getParameter() has nothing to do with a database query.
    That is your http request coming from the form submission. It won't change.
    If "echo" is meant to be a request parameter, then make sure the parameter is actually present.
    If its a database field (stored as a number) then
    float corr = rs.getFloat("echo");
    should do the trick.
    Can the value be null in the database?
    Cheers,
    evnafets

  • Help with Null Pointer Exception

    Hi, I am working on a simple menu program. It compiles and works correctly except for one item. I am having a problem with Greying out a menu item...... Specifically, When I press the EDIT / OPTIONS / READONLY is supposed to Greyout the Save and SaveAs options. But, when I do that it displays a Null Pointer Exception error message in the command window.
    Your advice would be much appreciated!
    Now for the code
    /  FileName Menutest.java
    //  Sample Menu
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class MenuTest extends JFrame {
       private Action saveAction;
         private Action saveAsAction;
         private JCheckBoxMenuItem readOnlyItem;
       // set up GUI
       public MenuTest()
          super( "Menu Test" );
    //*   file menu and menu items
          // set up File menu and its menu items
          JMenu fileMenu = new JMenu( "File" );
          // set up New menu item
          JMenuItem newItem = fileMenu.add(new TestAction( "New" ));
          // set up Open menu item
          JMenuItem openItem = fileMenu.add(new TestAction( "Open" ));
              //  add seperator bar
              fileMenu.addSeparator();
          // set up Save menu item
          JMenuItem saveItem = fileMenu.add(new TestAction( "Save" ));
          // set up Save As menu item
          JMenuItem saveAsItem = fileMenu.add(new TestAction( "Save As" ));
              //  add seperator bar
              fileMenu.addSeparator();
              // set up Exit menu item
          JMenuItem exitItem = new JMenuItem( "Exit" );
          exitItem.setMnemonic( 'x' );
          fileMenu.add( exitItem );
          exitItem.addActionListener(
             new ActionListener() {  // anonymous inner class
                // terminate application when user clicks exitItem
                public void actionPerformed( ActionEvent event )
                   System.exit( 0 );
             }  // end anonymous inner class
          ); // end call to addActionListener
    //*   Edit menu and menu items
              // set up the Edit menu
              JMenu editMenu = new JMenu( "Edit" );
              //JMenuItem editMenu = new JMenu( "Edit" );
          // set up Cut menu item
          Action cutAction = new TestAction("Cut");
          cutAction.putValue(Action.SMALL_ICON, new ImageIcon("cut.gif"));
          // set up Copy menu item
          Action copyAction = new TestAction("Copy");
          copyAction.putValue(Action.SMALL_ICON, new ImageIcon("copy.gif") );
          // set up Paste menu item
          Action pasteAction = new TestAction("Paste");
          pasteAction.putValue(Action.SMALL_ICON, new ImageIcon("paste.gif") );
              editMenu.add(cutAction);
              editMenu.add(copyAction);
              editMenu.add(pasteAction);
          //  add seperator bar
              editMenu.addSeparator();
              // set up Options menu, and it submenus and items
              JMenu optionsMenu = new JMenu("Options");
              readOnlyItem = new JCheckBoxMenuItem("Read-only");
              readOnlyItem.addActionListener(
                   new ActionListener()
                   {  //  anonymous inner class
                        public void actionPerformed( ActionEvent event)
                          saveAction.setEnabled(!readOnlyItem.isSelected());
                          saveAsAction.setEnabled(!readOnlyItem.isSelected());
                }  // end anonymous inner class
              ); // end call to addActionListener
              optionsMenu.add(readOnlyItem);
              // add seperator bar
              optionsMenu.addSeparator();
              //  Work on Radio Buttons
              ButtonGroup textGroup = new ButtonGroup();
              JRadioButtonMenuItem insertItem = new JRadioButtonMenuItem("Insert");
              insertItem.setSelected(true);
              JRadioButtonMenuItem overTypeItem = new JRadioButtonMenuItem("Overtype");
              textGroup.add(insertItem);
              textGroup.add(overTypeItem);
              optionsMenu.add(insertItem);
              optionsMenu.add(overTypeItem);
              editMenu.add(optionsMenu);
    //*   Help menu and menu items
              // set up the Help menu
              JMenu helpMenu = new JMenu( "Help" );
              helpMenu.setMnemonic( 'H' );
          // set up index menu item
          JMenuItem indexItem = helpMenu.add(new TestAction( "Index" ));
          indexItem.setMnemonic( 'I' );
          helpMenu.add( indexItem );
              // set up About menu item
          JMenuItem aboutItem = new JMenuItem( "About" );
          aboutItem.setMnemonic( 'A' );
          helpMenu.add( aboutItem );
          aboutItem.addActionListener(
             new ActionListener() {  // anonymous inner class
                // display message dialog when user selects Open
                public void actionPerformed( ActionEvent event )
                   JOptionPane.showMessageDialog( MenuTest.this,
                      "This is MenuTest.java \nVersion 1.0 \nMarch 15, 2004",
                      "About", JOptionPane.PLAIN_MESSAGE );
             }  // end anonymous inner class
          ); // end call to addActionListener
          // create menu bar and attach it to MenuTest window
          JMenuBar bar = new JMenuBar();
          setJMenuBar( bar );
          bar.add( fileMenu );
              bar.add( editMenu );
              bar.add( helpMenu );
          setSize( 500, 200 );
          setVisible( true );
       } // end constructor
       public static void main( String args[] )
          MenuTest application = new MenuTest();
          application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
       // inner class to handle action events from menu items
       private class ItemHandler implements ActionListener {
          // process color and font selections
          public void actionPerformed( ActionEvent event )
           repaint();
          } // end method actionPerformed
       } // end class ItemHandler
       //  Prints to action name to System.out
      class TestAction extends AbstractAction
              public TestAction(String name) { super(name); }
          public void actionPerformed( ActionEvent event )
             System.out.println(getValue(Action.NAME) + " selected." );
       } // end class TestAction
    } // end class MenuTest

    alan, I've been trying to figure out a solution.
    You can initialize it like this
    private Action saveAction= new Action();
         private Action saveAsAction=new Action();
    THE ABOVE WILL NOT WORK.
    because Action is an interface. An interface does not have constructors. However, interface references are used for polymorphic purposes.
    Anyway, all you have to do is find some class that implemets Action interface.... I cant seem to find one. Or maybe this is not how its supposed to be done?
    Hopefully, someone can shed some light on this issue.
    FYI,
    http://java.sun.com/products/jfc/swingdoc-api-1.1/javax/swing/Action.html

  • Popup window null pointer exception

    Hi,
    I have created a web dynpro application like this: a first window with a button that calls a popup with user info and telephone number and a button OK.
    When I click on OK, the popup window close perfectly, but if I click again on the button of the first page to see again the popup, I get a null pointer exception error:
    The initial exception that caused the request to fail, was:
       java.lang.NullPointerException
        at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.handle(ApplicationWindow.java:258)
        at com.sap.tc.webdynpro.clientserver.window.ApplicationWindow.handleWindowEvents(ApplicationWindow.java:239)
        at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:149)
        at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:321)
        at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713)
    The popup code:
    IWDWindow myPopup = wdContext.currentPopupNodeElement().getPopupAttribute();
    if (myPopup == null)
         IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("PopWin");
         myPopup = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
         myPopup.setWindowPosition(200, 200);
         wdContext.currentPopupNodeElement().setPopupAttribute(myPopup);
         wdContext.currentPopupNodeElement().setUserName("thibault");
         wdContext.currentPopupNodeElement().setUserTelNumber("01010101");
    myPopup.show();
    The close function for the popup:
    IWDWindow window = wdContext.currentPopupNodeElement().getPopupAttribute();
    window.hide();
    window.destroyInstance();
    Has any one got any solution, I would really appreciate your help.
    Thibault Schalck

    Hi,
       Try changing your code like this under popup.
            IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("PopWin");
         IWDWindow myPopup = wdComponentAPI.getWindowManager().createModalWindow(windowInfo);
    wdContext.currentPopupNodeElement().setPopupAttribute(myPopup);
         myPopup.setWindowPosition(200, 200);
         wdContext.currentPopupNodeElement().setPopupAttribute(myPopup);
         wdContext.currentPopupNodeElement().setUserName("thibault");
         wdContext.currentPopupNodeElement().setUserTelNumber("01010101");
    myPopup.show();
    Kiran

  • JTextArea, getText, and Null pointer exception

    Hi, I am having trouble figuring out why i get a null pointer exception when i call
    ta = theGUI.AbName_TA;
    ta.getText();does anyone have any ideas as to what the problem is?
    (NOTE: i am somewhat new to java, and am DEFINITELY new to swing. so, if there is a better way to go about the stuff that i'm trying to accomplish, PLEASE feel free to offer suggestions.)
    Thanks, Kim
    Code for GUI_CreateAntibody
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import java.util.*;
    public class GUI_CreateAntibody implements ActionListener
         private String AntibodyName;
         private TheDBInterface3 TheInterface2 = new TheDBInterface3();
         private JTextArea ta;
         GUI_CreateAntibody_Sketcher theGUI = new GUI_CreateAntibody_Sketcher();
         public static void main (String[] args) {
              System.out.println("In Main");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              atry.init();
         protected void init () {
              System.out.println("In init");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              theGUI.init();
              theGUI.button1.addActionListener(atry);
              System.out.println("added the actionlistener");
              System.out.println(theGUI.button1.toString());
         public void CloseWindow() {
              theGUI.window.dispose();
         public void actionPerformed(ActionEvent e) {
              System.out.println("In actionPerformed");
              Object source = e.getSource();
              System.out.println(source.toString());
              System.out.println("");
         //     System.out.println(theGUI.button1.toString());
         //     if (source == theGUI.button1) {
                   System.out.println("BUTTON1 WAS PRESSED");
                   ta = theGUI.AbName_TA;
                   ta.getText();
                   // String name = theGUI.AbName_TA.getText();
                   System.out.println("hi");
                   //TheInterface2.CreateAb(name);
                   //GUI_AddingAntibody AddingAb = new GUI_AddingAntibody();
                   //AddingAb.init();
                   //CloseWindow();
    Code for GUI_CreateAntibody_Sketcher
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.border.*;
    public class GUI_CreateAntibody_Sketcher implements WindowListener
         public JTextArea AbName_TA;          
         public JButton button1;
         String currentPattern;
         String[] patternExamples = {
                     "Yes",
                     "No",
         JComboBox patternList;
         JLabel result;
         JComboBox AbList;
         public void init ()
              window  = new SketchFrame("GUI_CreateAntibody_Sketcher");     // create the application window
              Toolkit theKit = window.getToolkit();     // get the window toolkit
              Dimension wndSize = theKit.getScreenSize();     //     get screen size
              double xPosition = 200;
              double yPosition = 200;
              double xSize = 200;
              double ySize = 200;
              window.setBounds((int) xPosition, (int) yPosition,
                                   (int) xSize, (int) ySize);
              theApp.window.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              GridBagLayout gridbag = new GridBagLayout();     // create a layout manager
              GridBagConstraints constraints = new GridBagConstraints();
              JPanel contentPane  = new JPanel();
              theApp.window.getContentPane().setLayout(gridbag); // set the container layout mgr
              contentPane.setBorder(BorderFactory.createCompoundBorder(
                                  BorderFactory.createMatteBorder(
                                                  1,1,2,2,Color.black),
                                  BorderFactory.createEmptyBorder(5,5,5,5)));
            constraints.fill = GridBagConstraints.BOTH;
            constraints.gridy = 0;
            constraints.gridx = 1;
            constraints.insets = new Insets(10,0,10,10);
            JLabel l = null;
            l = new JLabel("Add Antibody");
            l.setFont(new Font("Serif", Font.BOLD + Font.ITALIC, 18));
            gridbag.setConstraints(l, constraints);
            contentPane.add(l);
              window.getContentPane().add(l);
         /////// Antibody Name
            constraints.gridy = 2;
            JLabel AbLabel = null;
            AbLabel = new JLabel("Antibody Name:");
            AbLabel.setFont(new Font("Serif", Font.BOLD, 12));
             AbName_TA = new JTextArea();
            AbName_TA.setEditable(true);
            JScrollPane AbName_ScrollPane = new JScrollPane(AbName_TA);
            JPanel AbPanel = new JPanel();
            gridbag.setConstraints(AbPanel, constraints);
            AbPanel.setLayout(new BoxLayout(AbPanel, BoxLayout.Y_AXIS));
            AbPanel.add(AbLabel);
            AbPanel.add(AbName_ScrollPane);
            window.getContentPane().add(AbPanel);
         /////// SET CONSTRAINTS AND ADD BUTTON
         /////// Pressing button will indicate that you have
         /////// entered the Ab name
              // set constraints and add button     
              constraints.gridy = 7;          
              String label = "Enter the Antibody";     
              button1 = new JButton(label);
              addButton(button1, constraints, gridbag);
              window.setVisible(true);      
         public void windowClosing(WindowEvent e)
              window.dispose();
              System.exit(1);
         public void windowOpened(WindowEvent e) { }
         public void windowClosed(WindowEvent e) { }
         static void addButton(JButton button, GridBagConstraints constraints, GridBagLayout layout)
              // create a border object using a BorderFactory method
              // Border edge = BorderFactory.createRaisedBevelBorder();
              Border edge = BorderFactory.createRaisedBevelBorder();
              Color LightBlue = new Color(180,180,255);
              button.setBorder(edge);
              button.setFont(new Font("Times", Font.ITALIC + Font.BOLD, 14));
              button.setBackground(LightBlue);
              layout.setConstraints(button, constraints);
              window.getContentPane().add(button);           
         public void windowIconified(WindowEvent e) {}
         public void windowDeiconified(WindowEvent e) {}
         public void windowActivated(WindowEvent e) {}
         public void windowDeactivated(WindowEvent e) {}
         public static SketchFrame window;
         public static GUI_CreateAntibody_Sketcher theApp;
    }

    I changed my "actionPerformed" function a bit.
    Thanks for your comments - I hadn't realized some mistakes I had made while trying to fix my code.
    I'm still getting a null pointer exception, though.
    Also, in the main function of GUI_CreateAntibody, I call init for GUI_CreateAntibody. Within THIS init function I call init for GUI_CreateAntibody_Sketcher. I don't understand what is wrong with this (except that I suppose I should be using constructors as opposed to init functions.)
    Thanks,
    Kim
    Code for GUI_CreateAntibody
    import javax.swing.*;
    import java.awt.*;
    import javax.swing.border.*;
    import java.awt.event.*;
    import java.util.*;
    public class GUI_CreateAntibody implements ActionListener
         private String AntibodyName;
         private TheDBInterface3 TheInterface2 = new TheDBInterface3();
         private JTextArea ta;
         GUI_CreateAntibody_Sketcher theGUI = new GUI_CreateAntibody_Sketcher();
         public static void main (String[] args) {
              System.out.println("In Main");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              atry.init();
         public void init () {
              System.out.println("In init");
              GUI_CreateAntibody atry = new GUI_CreateAntibody();
              theGUI.init();
              theGUI.button1.addActionListener(atry);
              System.out.println("added the actionlistener");
              System.out.println(theGUI.button1.toString());
         public void CloseWindow() {
              theGUI.window.dispose();
         public void actionPerformed(ActionEvent e) {
              System.out.println("In actionPerformed");
              Object source = e.getSource();
              System.out.println(source.toString());
              System.out.println("");
         //     System.out.println(theGUI.button1.toString());
         //     if (source == theGUI.button1) {
                   System.out.println("BUTTON1 WAS PRESSED");
                   String name = theGUI.AbName_TA.getText();
                   // String name = theGUI.AbName_TA.getText();
                   System.out.println("hi");
                   //TheInterface2.CreateAb(name);
                   //GUI_AddingAntibody AddingAb = new GUI_AddingAntibody();
                   //AddingAb.init();
                   //CloseWindow();
    }

  • IOS default native extension packaging null pointer exception

    I have an ANE that currently has a specific implementation for Android and a default implementation. Packaging up the .apk for android works fine on my android devices and packaging up a windows destop version (I created a separate desktop air application to do this) that uses the default ANE implementation works fine.
    The problem is when trying to packaging the ipa for iOS that uses the ANE. I get the following error when I try a "Export Release Build" of my mobile app for iOS. It should be using the default ANE implementation.
    Error occurred while packaging the application:
    Warning: Using default implementation for native extension '<my ane extension id here>'
    unexpected failure: null
    java.lang.NullPointerException
        at com.adobe.png.PNGUtils.updatePNGMetadata(PNGUtils.java:60)
        at com.adobe.air.ipa.IPAOutputStream.addFile(IPAOutputStream.java:557)
        at com.adobe.air.ADTOutputStream.addFileFromStream(ADTOutputStream.java:299)
        at com.adobe.air.ADTOutputStream.addFileFromStream(ADTOutputStream.java:292)
    What is missing? I've successfully packaged IPAs before but they didn't use any ANEs. This app will eventually have it's own iOS ANE implementation but it should just use the default if there is no iOS implementation available.
    Randy

    While using ipa-test-interpreter or ipa-debug-interpreter (and also removing the -platformsdk argument during IPA packaging) fixed ipa-test and ipa-debug builds, it did not fix ipa-ad-hoc or ipa-app-store builds. Our entire build automation system relies on ant based builds, so at the moment using Flex 4.6 and AIR 3.4 is basically out of the question because of the null pointer exception error that eckhoff_randy pointed out above.
    Without AIR 3.4 we do not have iOS 6 support (meaning we don't have iPhone 5 support either).
    This is a MAJOR problem. I'm not sure that 'waiting until the next release' is an acceptable answer at this point. If possible can you give me as much information as you have on this problem?
    Here's what's my output looks like:
    [exec] [Fatal Error] :1:1: Content is not allowed in prolog.
    [exec] java.io.IOException: PLIST generation failed due to SAX error:org.xml.sax.SAXParseException: Content is not allowed in prolog.
    [exec]
    at com.adobe.air.Plist.newFromString(Plist.java:351)
    [exec]
    at com.adobe.air.Plist.newFromFile(Plist.java:325)
    [exec]
    at com.adobe.air.ipa.IPAOutputStream.setSDKVersion(IPAOutputStream.java:1067)
    [exec]
    at com.adobe.air.ipa.IPAOutputStream.setPlatformSDKLocation(IPAOutputStream.java:969)
    [exec]
    at com.adobe.air.ipa.IPAPackager.setDeviceSDKDirectory(IPAPackager.java:187)
    [exec]
    at com.adobe.air.ADT.parseFileAndPathArguments(ADT.java:1423)
    [exec]
    at com.adobe.air.ADT.parseDescriptorAndFileset(ADT.java:1474)
    [exec]
    at com.adobe.air.ADT.parseInput(ADT.java:929)
    [exec]
    at com.adobe.air.ADT.parsePackage(ADT.java:672)
    [exec]
    at com.adobe.air.ADT.parseArgsAndGo(ADT.java:570)
    [exec]
    at com.adobe.air.ADT.run(ADT.java:419)
    [exec]
    at com.adobe.air.ADT.main(ADT.java:469)
    [exec] unexpected failure: null
    [exec] java.lang.NullPointerException
    [exec]
    at com.adobe.air.ipa.IPAOutputStream.addExtensionAbc(IPAOutputStream.java:1031)
    [exec]
    at com.adobe.air.ipa.IPAPackager.addExtensions(IPAPackager.java:351)
    [exec]
    at com.adobe.air.ApplicationPackager.createPackage(ApplicationPackager.java:68)
    [exec]
    at com.adobe.air.ipa.IPAPackager.createPackage(IPAPackager.java:245)
    [exec]
    at com.adobe.air.ADT.parseArgsAndGo(ADT.java:571)
    [exec]
    at com.adobe.air.ADT.run(ADT.java:419)
    [exec]
    at com.adobe.air.ADT.main(ADT.java:469)

  • Error:null pointer exception in jsp

    I try to write a programme for copying from one file to another file in a text format.but it is displaying the error.why the null pointer exception is coming.also i want to write the contents from combobox and text box to that same file.for that what to do? can u explain.
    the code is like that.... the disining part in another page..
    <%@ page language="java"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.text.*"%>
    <html>
    <head>
    <title>
    </title>
    </head>
    <body>
    <%
    String cname=request.getParameter("cname");
    String category=request.getParameter("category");
    String submit=request.getParameter("submit");
    %>
    <%
    try
    File f1=new File(request.getParameter("file"));
    File f2=new File("/ee/file1.txt");
    InputStream is=new FileInputStream(f1);
    OutputStream os=new FileOutputStream(f2);
    byte buf[]=new byte[1024];
    int len;
    if(submit.equals("submit"))
    %>
    Company Name is:<%out.println(cname);%>
    Category :<%out.println(category);%>
    <%
    while((len=is.read(buf))>0)
    os.write(buf,0,len);
    out.println("file copied");
    else
    out.println("invalid data");
    is.close();
    os.close();
    out.println("file copied");
    catch(FileNotFoundException ex)
    out.println(ex);
    catch(IOException eo)
    out.println(eo);
    catch(Exception e)
         out.println(e);
         finally
         out.println("");
         %>
         </body>
         </html>

    Hi,
    Am not getting exception now.In the jsp wer I ve written connection,am taking some values using request.getParameter("msg") . I had opened the connection statement before getting these parameter values.Think I ws getting null pointer exception due to this.Now I have opened connection after getting these parameter values...anyway am not getting the exception now...
    Thanks.

  • Null pointer exception in native code. error 52 in Weblogic8.1

    Hi all,
    I'm using WLS 8.1SP5 with 1.4.2_08 and having this dump once a day, when people is working. I tryed google, but no luck. Can someone can help please?
    ===== BEGIN DUMP =============================================================
    JRockit dump produced after 5 days, 00:39:42 on Mon Oct 01 16:59:00 2007
    Additional information is available in:
    D:\web\bea\user_projects\domains\APIA_Prod\jrockit.2188.dump
    D:\web\bea\user_projects\domains\APIA_Prod\jrockit.2188.mdmp
    If you see this dump, please open a support case with BEA and
    supply as much information as you can on your system setup and
    the program you were running. You can also search for solutions
    to your problem at http://forums.bea.com in
    the forum jrockit.developer.interest.general.
    Error code: 52
    Error Message: Null pointer exception in native code
    Version : BEA WebLogic JRockit(TM) 1.4.2_08 JVM R24.5.0-61 ari-49095-20050826-1856-win-ia32
    Threads / GC : Native Threads, GC strategy: parallel
    : mmHeap->data = 0x00B60000, mmHeap->top = 0x40B60000
    : mmStartCompaction = 0x1EB60000, mmEndCompaction = 0x23B60000
    CPU : Intel Pentium 4 (HT)
    Number CPUs : 8
    Tot Phys Mem : 4025999360
    OS version : Microsoft Windows Server 2003 Service Pack 1 (Build 3790)
    State : JVM is shutting down
    Command Line : -Djava.class.path=.;C:\Program Files\Java\j2re1.4.2_05;C:\Program Files\Java\j2re1.4.2_05\lib;C:\Program Files\Java\j2re1.4.2_05\lib\tools.jar -Djrockit.launcher.type=jrockit.shipment -Xms1024m -Xmx1024m -Xgc:parallel -Xcleartype:local -Dweblogic.management.server=http://10.128.12.23:7001 -Dbea.home=D:\web\bea -Dweblogic.RootDirectory=D:\web\bea\user_projects\domains\APIA_Prod -Djava.class.path=.;D:\web\bea\jdk142_08\lib\tools.jar;D:\web\bea\WEBLOG~1\server\lib\weblogic_sp.jar;D:\web\bea\WEBLOG~1\server\lib\weblogic.jar -Djava.security.policy==D:\web\bea\WEBLOG~1\server\lib\weblogic.policy -Dweblogic.Name=Apia_Svr1 -Dweblogic.system.BootIdentityFile=D:\web\bea\WEBLOG~1\common\nodemanager\NodeManagerLogs\NodeManagerInternal\bootFile_APIA_Prod_Apia_Svr1 -Dweblogic.system.NodeManagerBoot=true -Dweblogic.system.NodeManagerAddress=null::5555 -Dweblogic.nodemanager.ServerStartTime=1190834358456 -Dweblogic.security.SSL.ignoreHostnameVerification=false -Dweblogic.ReverseDNSAllowed=false -Dsun.java.command=weblogic.Server
    Environment : JAVA_HOME=C:\Program Files\Java\j2re1.4.2_05, java.home=d:\web\bea\jrockit81sp5_142_08\jre, java.class.path=.;D:\web\bea\jdk142_08\lib\tools.jar;D:\web\bea\WEBLOG~1\server\lib\weblogic_sp.jar;D:\web\bea\WEBLOG~1\server\lib\weblogic.jar, java.library.path=d:\web\bea\jrockit81sp5_142_08\bin;.;C:\WINDOWS\system32;C:\WINDOWS;D:\web\bea\WEBLOG~1\server\bin;D:\web\bea\jdk142_08\bin;D:\web\bea\jdk142_08\jre\bin;C:\Program Files\VERITAS\NetBackup\bin\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Java\j2re1.4.2_05\bin
    C Heap : Good; no memory allocations have failed
    Registers (from context struct at 0x41D6F488/0x41D6F5A4):
    Converted EIP: 41eafe45
    EAX = 00001e90 EBX = 009db42c
    ECX = 003c1e90 EDX = 00000000
    ESI = 71c14280 EDI = 00000000
    EIP = 41eafe45 ESP = 41d6f870
    EBP = 41d6f880 EFL = 00010a03
    CS = 001b DS = 0023 ES = 0023
    SS = 0023 FS = 003b GS = 0000
    Stack:
    41d6f870 :00000000 00000000 003c95a8 003c1e90 00000000 004e91e1
    41d6f888 :0000008f 00000000 41d6f8c4 009db42c 00000001 00000000
    41d6f8a0 :41b802e0 4cfa3940 012b5068 4d87a5cc 012b5068 00000000
    41d6f8b8 :012b5068 41b81710 4ccfcdda 009b9ba8 004e9244 012b5310
    41d6f8d0 :0054deca 012b5315 4ccfc945 0000008f 50a0f1e8 009db42c
    41d6f8e8 :00000000 012b5258 4ccfcb33 012b5315 0000008f 012b5258
    41d6f900 :4ccfca44 012b525d 00000000 009b9ba8 41d6f918 41b823f8
    41d6f918 :4ccfc980 00553ff5 ffffffff 00000010 00000000 41d6f9e4
    41d6f930 :4d1126e8 009b9c34 41d6fa48 41d6f978 009b9c34 437faab0
    41d6f948 :fffffffe 00000002 fffffffe 00000000 41d6f978 00570b50
    41d6f960 :00000000 009b9ba8 00090000 009b9c34 00000001 7c8302e7
    41d6f978 :00000000 00570b50 fffffff8 00000001 0000008f 0000008c
    41d6f990 :437faaf0 00000000 00000000 00000000 00000000 41d6f918
    41d6f9a8 :41b823c0 ffffffff 437f9fc0 437faab0 009b9c34 4ccfc980
    41d6f9c0 :0000008f 41d6f918 00000001 00000001 00000010 00000000
    41d6f9d8 :00000000 41d6f918 009b9c34 009b9ba8 00533bb1 009b9c34
    41d6f9f0 :50a0f1b8 4d1126e8 00000000 41d6fa44 005539c0 41d6fa48
    41d6fa08 :009b9ba8 437f9fc0 41d6fa50 009b9c34 0059065c 50a0f1b8
    41d6fa20 :00535583 009b9c34 437faab0 00000000 41d6fa44 005539c0
    41d6fa38 :00000001 41d6fa48 00533729 41d6fa68 00000000 00000000
    41d6fa50 :0000008f 00569db2 009b9c34 437f9fd4 437faab0 0000008f
    41d6fa68 :009b9ba8 009b9c34 0000000f 00000002 00569ef7 0000008f
    41d6fa80 :009b9ba8 0056a38d 009b9ba8 009b9ba8 41d6ff80 009b9ba8
    41d6fa98 :7ffde000 009b9c34 41d6ff98 00525ca0 00572cf0 00000000
    41d6fab0 :00000000 00000000 00000000 00000000 00000000 00000000
    41d6fac8 :00000000 00000000 00000000 00000000 00000000 00000000
    41d6fae0 :00030178 00000269 00000000 00000000 00000000 00000000
    41d6faf8 :00000000 00000000 00000000 00000000 00000000 00000000
    41d6fb10 :00000000 00000000 00000000 00000000 00000000 00000000
    41d6fb28 :00000000 00000000 00037c28 00000000 00000000 00000000
    41d6fb40 :00000000 00000013 00000000 00037c20 00030168 00000042
    41d6fb58 :00037c20 00000013 00030178 00000000 00000098 00000000
    41d6fb70 :00030000 009d6850 00000210 4100fbbc 00000098 4100f980
    41d6fb88 :00380000 41d6f988 00000000 41d6fbd4 7c82f680 7c82fb28
    41d6fba0 :ffffffff 7c82fb23 7c3423aa 771f123c 00000000 00000002
    41d6fbb8 :771f0000 41d6fc10 00095e70 00000001 00000000 41d6fca8
    41d6fbd0 :771f46c9 771f1240 ffffffff 771f123c 771f11e8 771f0000
    41d6fbe8 :00000002 00000000 00000000 41d6fc10 00000001 41d6fc1c
    41d6fc00 :7c82257a 771f0000 00000001 00000000 00000001 00000000
    41d6fc18 :00097f98 00000001 00000000 41d6fcb8 7c81a81b 7c889d94
    41d6fc30 :7c81b26f 00000000 7ffdc000 00000000 00000000 00000000
    41d6fc48 :00000000 00000000 00000000 00000000 00000000 00000000
    41d6fc60 :00000000 00000024 00000001 00000000 00000000 00000070
    41d6fc78 :ffffffff ffffffff 7c81a7dc 7c81a7a4 00000000 00000000
    41d6fc90 :00097f98 771f11a0 00000418 000000f5 009dc120 41d6fecc
    41d6fca8 :7c82fda6 7c82fb23 0000040c 0000040c 009b9ba8 7c822054
    41d6fcc0 :7c81b23f 41d6fd28 00000000 009dbad8 00000000 00000000
    41d6fcd8 :00000000 00000000 00000000 00000000 00000000 00000000
    41d6fcf0 :00000000 00000000 00000000 41d6fcc4 00000000 41d6fff4
    41d6fd08 :7c82f680 009dc530 ffffffff 7c81b23f 7c8211b4 0000000c
    41d6fd20 :41d6fd28 00000001 00010017 00000000 00000000 00380178
    41d6fd38 :00000000 00000000 00000000 00000005 f7547000 0000010d
    41d6fd50 :000007ff 00000001 624e4d43 00000060 ae19faa4 009dc120
    41d6fd68 :e4d11360 e24e4d43 00000005 0000000e e310e008 ffffffff
    41d6fd80 :3b9aca07 e33dd7e8 3b9aca07 3b9aca07 00380178 1a30eb0a
    41d6fd98 :009dc538 8093d69b 009d99e8 00000000 00380178 c0000034
    41d6fdb0 :808ad480 00000000 00000038 009d99f0 00000023 00000000
    41d6fdc8 :00000000 009dbad8 00000000 00000000 0056f660 00000000
    41d6fde0 :77e6b5f3 0000001b 00000200 41d6fffc 00000023 00000698
    41d6fdf8 :0000076a e47bbbf0 00000090 00000006 00000005 f7547000
    41d6fe10 :ae19fbd4 e131ec08 ae19fbd8 d3f0fe22 d3f0fe22 000000f5
    41d6fe28 :8093cb16 e131ec08 e105bf1c 00000025 ae19fbd0 009d99f0
    41d6fe40 :e105bfb0 ae19fbd4 8093cb6e 3b9aca07 e131ec08 8083a8f5
    41d6fe58 :00000000 00000000 80a78be3 badb0d00 80010031 00000005
    41d6fe70 :009dc120 00000005 c0502000 009dccd8 77ce8221 00000083
    41d6fe88 :00000000 009dc118 ae19fba8 00000418 009dc118 009dc120
    41d6fea0 :00380178 00000001 00000418 0000ad58 00380000 41d6fcb0
    41d6feb8 :f772fa00 41d6fefc 7c82f680 7c82fb28 ffffffff 7c82fb23
    41d6fed0 :7c3416b3 00380000 00000000 7c3416b8 0000040c 00000000
    41d6fee8 :009b9ba8 ffffffff 41d6ff3c 41d6fee0 41d6ff40 41d6ff98
    41d6ff00 :7c34240d 7c37a2a8 ffffffff 7c3416b8 7c3416db 0000040c
    41d6ff18 :7c3416f8 0000040c 00000000 00504b4d 0000040c 0107e577
    41d6ff30 :41d6ff6c 0057de91 009b9ba8 009b9ba8 00003000 00000140
    41d6ff48 :41d6ff64 41d6ffa0 0056f1f9 41c70000 00003000 009b9ba8
    41d6ff60 :009db8b0 009b9ba8 0056e9c2 7c821dd4 009b9ba8 009b9ba8
    41d6ff78 :009b9ba8 00572ce9 41d6ffa0 00572ded 77e6eccd 009dbad8
    41d6ff90 :009dbad8 7ffde000 41d6ffdc 00525ca0 41d6ffec 0056f6c7
    41d6ffa8 :009b9ba8 00000000 00000000 00000740 009dbaf4 77e6608b
    41d6ffc0 :00000740 00000000 00000000 009dbad8 c9792963 41d6ffc4
    41d6ffd8 :000d4193 ffffffff 77e6b7d0 77e66098 00000000 00000000
    Code:
    41eafd45 :00000000 00000000 00000000 00000000 00000000 00000000
    41eafd5d :00000000 00000000 ff4e4be0 00ffffff 007ffdc0 00000000
    41eafd75 :34001590 0041eafd 98000000 d041eaff 0077e6b7 0077e6bb
    41eafd8d :a4000000 4241eafd 2877e6ba ff000007 00ffffff 68000000
    41eafda5 :0c41d6f8 280056e6 ff000007 0fffffff 48001d1a 8000aece
    41eafdbd :00006093 987ffda0 c0005710 98004fe0 38009da3 0041eafe
    41eafdd5 :40000000 9841eafe f8009da3 0001c83c e0000000 0001c83c
    41eafded :17000000 80004f66 38006093 3841eafe 2041eafe 00f7c4ca
    41eafe05 :da7ffda0 20004f20 c0f7c4ca 00004fe0 00000000 b5000000
    41eafe1d :98004f2e 98009da3 00009da3 9841eaff 58009da3 00303fe0
    41eafe35 :00000000 50000000 0000570b 98000000 00009da3 00000000
    41eafe4d :80000000 f5006093 388083a8 5041eafe 0000570b 98000000
    41eafe65 :31009da3 00800100 60000000 00005c0e 58000000 5041eafe
    41eafe7d :0000570b 98000000 00009da3 00000000 d0000000 00005c0e
    41eafe95 :31000000 00800100 00000000 00000000 ff000000 00ffffff
    41eafead :00000000 cc000000 0080a78b e0f7757a 78adbbab 5041eafe
    41eafec5 :0000570b 98000000 b7009da3 608083e6 2888736a 90005c0e
    41eafedd :7888736a 5041eafe 0000570b 98000000 3c009da3 0041eaff
    41eafef5 :20000000 00005c0f 80000010 f041eaff 0000572c 84000000
    41eaff0d :917c8218 ff77e41a 3cffffff 4041eaff 4041eaff 64000001
    41eaff25 :f041eaff 6c009de2 2d41eaff 0600540a 98000000 f0009da3
    41eaff3d :00009de2 40000030 64000001 a041eaff f941eaff 000056f1
    Loaded modules:
    (* denotes the module causing the exception)
    0x7c800000-0x7c8bffff C:\WINDOWS\system32\ntdll.dll
    0x77e40000-0x77f41fff C:\WINDOWS\system32\kernel32.dll
    0x77f50000-0x77febfff C:\WINDOWS\system32\ADVAPI32.dll
    0x77c50000-0x77ceefff C:\WINDOWS\system32\RPCRT4.dll
    0x77ba0000-0x77bf9fff C:\WINDOWS\system32\MSVCRT.dll
    0x00410000-0x0061afff d:\web\bea\jrockit81sp5_142_08\jre\bin\jrockit\jvm.dll
    0x76aa0000-0x76accfff C:\WINDOWS\system32\WINMM.dll
    0x77c00000-0x77c47fff C:\WINDOWS\system32\GDI32.dll
    0x77380000-0x77411fff C:\WINDOWS\system32\USER32.dll
    0x7c8d0000-0x7d0d3fff C:\WINDOWS\system32\SHELL32.dll
    0x77da0000-0x77df1fff C:\WINDOWS\system32\SHLWAPI.dll
    0x71c00000-0x71c16fff C:\WINDOWS\system32\WS2_32.dll
    0x71bf0000-0x71bf7fff C:\WINDOWS\system32\WS2HELP.dll
    0x7c340000-0x7c395fff C:\WINDOWS\system32\MSVCR71.dll
    0x71bc0000-0x71bc7fff C:\WINDOWS\system32\rdpsnd.dll
    0x771f0000-0x77200fff C:\WINDOWS\system32\WINSTA.dll
    0x71c40000-0x71c97fff C:\WINDOWS\system32\NETAPI32.dll
    0x76b70000-0x76b7afff C:\WINDOWS\system32\PSAPI.DLL
    0x77420000-0x77522fff C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.3790.2778_x-ww_A8F04F11\comctl32.dll
    0x76f50000-0x76f62fff C:\WINDOWS\system32\Secur32.dll
    0x00b30000-0x00b48fff d:\web\bea\jrockit81sp5_142_08\jre\bin\java.dll
    0x00b50000-0x00b5dfff d:\web\bea\jrockit81sp5_142_08\jre\bin\verify.dll
    0x71b20000-0x71b60fff C:\WINDOWS\System32\mswsock.dll
    0x76ed0000-0x76efefff C:\WINDOWS\system32\DNSAPI.dll
    0x76f80000-0x76f87fff C:\WINDOWS\system32\rasadhlp.dll
    0x42c30000-0x42c34fff D:\web\bea\weblogic81\server\bin\wlntio.dll
    0x68000000-0x6802efff C:\WINDOWS\system32\rsaenh.dll
    0x00a90000-0x00a95fff D:\web\bea\jrockit81sp5_142_08\jre\bin\ioser12.dll
    0x02800000-0x028c0fff d:\web\bea\jrockit81sp5_142_08\jre\bin\dbghelp.dll
    0x77b90000-0x77b97fff C:\WINDOWS\system32\VERSION.dll
    Java Thread ID = 0x00000100, lastJavaFrame = 0x41D6F8E0, Name = (Signal Handler)
    Thread Stack Trace:
    at _vmShutdown+225()@0x004E91E1
    at java/lang/Shutdown.halt(Native Method)@0x4CCFC910
    at java/lang/Shutdown.exit(Unknown Source)@0x4CCFCA44

    You would need to get BEA support, after verifying you are on a supported configuration (http://edocs.bea.com/jrockit/jrdocs/suppPlat/supp_142.html).
    Otherwise you may need to try update 10, or use Sun JVM.

Maybe you are looking for