473,799 Members | 3,159 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

nullpointer exception when assigning values

oll3i
679 Contributor
Expand|Select|Wrap|Line Numbers
  1. public void wczytajPlik(String sciezka) throws FileNotFoundException
  2.     {
  3.     wczytaneDane.setText("");
  4.      BufferedReader br = new BufferedReader(new FileReader(sciezka));    
  5.      String line = null;
  6.      String[] rows_cols = null;
  7.     try {
  8.         line = br.readLine();
  9.         rows_cols = line.split("\\s+");
  10.     } catch (IOException e) {
  11.         // TODO Auto-generated catch block
  12.         e.printStackTrace();
  13.     }
  14.  
  15.      int rows=new Integer(rows_cols[0]);
  16.      int cols=new Integer(rows_cols[1]);
  17.      wczytaneDane.append("Liczba wierszy:"+rows+"\n");
  18.      wczytaneDane.append("Liczba kolumn:"+cols+"\n");
  19.      klasyfikatorBayesa = new KlasyfikatorBayesa(cols-1,rows);
  20.      System.out.println("Kolumny i wiersze ustawione\n"+"line="+line);
  21.  
  22.      int lineNumber=0;
  23.  
  24.      String[] aktualnyWiersz=null;
  25.      Integer valueRowColumn = null;
  26.       try {
  27.         while((line = br.readLine()) != null)   { 
  28.             aktualnyWiersz = line.split("\\s+");
  29.  
  30.  
  31.             for(int i=0;i<aktualnyWiersz.length-1;i++){
  32.  
  33.                 ///int valueInt = new Integer(aktualnyWiersz[i]).intValue();
  34.                 try {
  35.                     valueRowColumn = new Integer(aktualnyWiersz[i]);
  36.                 } catch (NumberFormatException ignored) {
  37.  
  38.  
  39.                     klasyfikatorBayesa.dane_treningowe[lineNumber][i]=valueRowColumn;
  40.                 }
  41.  
  42.  
  43.             }
  44.             System.out.println(lineNumber+"line="+line);
  45.              wczytaneDane.append(lineNumber+")"+line+"\n");
  46.               lineNumber++;
  47.           }
  48.  
  49.         System.out.println("Dane treningowe wczytane");    
  50.     } catch (IOException e) {
  51.         // TODO Auto-generated catch block
  52.         e.printStackTrace();
  53.     }
  54.  
  55.     }
  56.  
  57.  

for(int i=0;i<liczbaCol umn;i++){
System.out.prin tln("dane_treni ngowe[aktualny_wiersz][i]"+dane_treningo we[aktualny_wiersz][i]);
wiersz_analizow any[i]=dane_treningow e[aktualny_wiersz][i];
}

when i do System.out.prin tln wiersz_analizow any[i] is null
klasyfikatorBay esa.dane_trenin gowe[lineNumber][i]=valueRowColumn ; assigns null ? when i convert it to integer valueRowColumn = new Integer(aktualn yWiersz[i]); it returns NumberFormatExc eption


thank YOU
Jul 5 '07 #1
4 1584
r035198x
13,262 MVP
Here are some tips.
1.) Define variables closet to where you're using them.
2.) Ignoring exceptions is not the in-thing to do.
3.) NumberFormatExc eption is what it says. You are trying to convert an inconvertible value. Print it to console and see what it is.
Jul 5 '07 #2
oll3i
679 Contributor
i need to convert aktualnyWiersz[i] to Integer so i can assign value
klasyfikatorBay esa.dane_trenin gowe[lineNumber][i]=valueRowColumn ;
which is public Integer[][] dane_treningowe ;

how do i conver String to Integer?
Jul 5 '07 #3
oll3i
679 Contributor
Integer valueRowColumn = Integer.valueOf (aktualnyWiersz[i]); throws number format exception
Jul 5 '07 #4
r035198x
13,262 MVP
i need to convert aktualnyWiersz[i] to Integer so i can assign value
klasyfikatorBay esa.dane_trenin gowe[lineNumber][i]=valueRowColumn ;
which is public Integer[][] dane_treningowe ;

how do i conver String to Integer?
Use Integer.parseIn t but you'll get an exception if the value being passed is not an integer.
Jul 5 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

5
6411
by: gtz669 | last post by:
I have a class which I am using for data stroage. I declare an instance of that class in my main class which is running my java applet. I Iassign it a value in the init () function and it works fine but when I try to do the same assignment later on, it restults in a NullPointerException and I can not figure this out. Could someone please help. Thanks. Here's the code: public class A extends java.applet.Applet
6
3261
by: James Nugent | last post by:
Hi everyone, My app need to manipulate JLabels that have been added to the pane. All I need to do is simple stuff like make them disappear or change their background color. Unfortunately (and only from time to time) I get null pointer exceptions: java.lang.NullPointerException at javax.swing.text.JTextComponent.getSelectionStart(JTextComponent.java:1503) at javax.swing.text.WrappedPlainView.paint(WrappedPlainView.java:342) at...
7
6007
by: Noor | last post by:
please tell the technique of centralize exception handling without try catch blocks in c#.
14
74904
by: Eric Bantock | last post by:
Very basic question I'm afraid. Once an array has been declared, is there a less tedious way of assigning values to its members than the following: myarray=8; myarray=3; myarray=4; myarray=0; myarray=0; myarray=1; myarray=8;
3
2210
by: nobs | last post by:
Hi guys I think I missunderstud something with delegates & events Hopefully someone can bring some light in this issue: Following problem I have a class which provide some events (like ServerQuitMsg) and in the code i call
3
6815
by: chramprasad | last post by:
public ActionForward edit(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { MissionForm missionForm = (MissionForm) form; String strMissionId = InsEncr.getSingleton().decrypt(missionForm.getMissionId().toString()); Long userEntityTypeId = getUserEntityTypeId(request); String strUserEntityTypeId =...
3
3232
by: doubts | last post by:
Hi all, I am trying to convert my bulk of code from VC++ 6.0 to VC++.Net. when using std::string type variable, the application causes exception at one instance and does not cause an exception at other. i have two functions in the same .cpp file //exception occurs at this function void call(const char* var2 ) {
4
1396
by: pamelafluente | last post by:
Hi guys, When bubbling some exception up to some interface handlers - what is most recommandable: Try 'some code Catch ex As Exception
1
1363
by: =?Utf-8?B?U21pdGE=?= | last post by:
I have a gridview, and a listbox which has a different datasource. The listbox contains distinct types of contacts, whereas the gridview will get populated upon contact type selection. The data is displayed but when on submission of the contact type from the list box i get a null reference exception. I already tried to trap using SelectedIndex -1 but that does not work.. Any pointers.
0
9685
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9538
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10247
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10214
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10023
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6803
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5459
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
3751
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2935
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.