473,394 Members | 1,371 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

how to convert String to int

hai,

I want to convert String to int.My coding is like this,

Expand|Select|Wrap|Line Numbers
  1. rs=stmt.executeQuery("select a from mailtable");
  2.     rs.absolute(-1);
  3.  
  4.     String id=rs.getString("a");
  5.     System.out.println(id);
  6.  
  7.     id= id.substring(3,(id.length()));
  8.     System.out.println("value of id is "+ id);
  9.  
at last this id having an numeric value ,I want to convert this to int. After this i want to add 1 to that int value.How to do this please help me.

Expand|Select|Wrap|Line Numbers
  1. Integer.parseInt(id);
  2.  
This is not working. It gives NumberFormatException. Please anyone can help me.

This is very urgent for me.
Aug 30 '07 #1
13 5305
Nepomuk
3,112 Expert 2GB
hai,

I want to convert String to int.My coding is like this,

Expand|Select|Wrap|Line Numbers
  1. rs=stmt.executeQuery("select a from mailtable");
  2.     rs.absolute(-1);
  3.  
  4.     String id=rs.getString("a");
  5.     System.out.println(id);
  6.  
  7.     id= id.substring(3,(id.length()));
  8.     System.out.println("value of id is "+ id);
  9.  
at last this id having an numeric value ,I want to convert this to int. After this i want to add 1 to that int value.How to do this please help me.

Expand|Select|Wrap|Line Numbers
  1. Integer.parseInt(id);
  2.  
This is not working. It gives NumberFormatException. Please anyone can help me.

This is very urgent for me.
If you want the ASCII value:
Expand|Select|Wrap|Line Numbers
  1. System.out.println((int) id.charAt(0));
  2.  
parseInt would give you a 1 if used with the String "1".
Aug 30 '07 #2
dmjpro
2,476 2GB
If you want the ASCII value:
Expand|Select|Wrap|Line Numbers
  1. System.out.println((int) id.charAt(0));
  2.  
parseInt would give you a 1 if used with the String "1".
Look He is not Looking for ASCII Value.
He wants to convert into Number.

Kind regards,
Dmjpro.
Aug 30 '07 #3
Nepomuk
3,112 Expert 2GB
Look He is not Looking for ASCII Value.
He wants to convert into Number.
In that case, what output does
Expand|Select|Wrap|Line Numbers
  1. System.out.println(id);
  2.  
create?
Aug 30 '07 #4
dmjpro
2,476 2GB
id= id.substring(3,(id.length()));
Are you sure that the id is equivalent to Number.
Look The NumberFormatException thrown when the Input String is not Equivalent to a number.
One more thing If you want to cut a String from a Starting Index up to Last then it's enough with id.substring(3).
Anyway, try to check that the return String whether contains any Non-Digit.
If it is then this Exception must be thrown.
Ok, Best of Luck with your try.

Kind regards,
Dmjpro.
Aug 30 '07 #5
Are you sure that the id is equivalent to Number.
Look The NumberFormatException thrown when the Input String is not Equivalent to a number.
One more thing If you want to cut a String from a Starting Index up to Last then it's enough with id.substring(3).
Anyway, try to check that the return String whether contains any Non-Digit.
If it is then this Exception must be thrown.
Ok, Best of Luck with your try.

Kind regards,
Dmjpro.
Thanks for your reply.

I want to convert into integer. And then I sure it contains the value number.It is getting from the database.After three posisions it is only have numeric values only.And Also I checked that value using print statement it prints number.

After converted into int ,I want to add 1 to that. There is any other solution for this.
Aug 30 '07 #6
dmjpro
2,476 2GB
Thanks for your reply.

I want to convert into integer. And then I sure it contains the value number.It is getting from the database.After three posisions it is only have numeric values only.And Also I checked that value using print statement it prints number.

After converted into int ,I want to add 1 to that. There is any other solution for this.
Could you send me Stack Message you got in your Console.
I mean the total Exception Message.
Could you sen me please?

Kind regards,
Dmjpro.
Aug 30 '07 #7
r035198x
13,262 8TB
hai,

I want to convert String to int.My coding is like this,

Expand|Select|Wrap|Line Numbers
  1. rs=stmt.executeQuery("select a from mailtable");
  2.     rs.absolute(-1);
  3.  
  4.     String id=rs.getString("a");
  5.     System.out.println(id);
  6.  
  7.     id= id.substring(3,(id.length()));
  8.     System.out.println("value of id is "+ id);
  9.  
at last this id having an numeric value ,I want to convert this to int. After this i want to add 1 to that int value.How to do this please help me.

Expand|Select|Wrap|Line Numbers
  1. Integer.parseInt(id);
  2.  
This is not working. It gives NumberFormatException. Please anyone can help me.

This is very urgent for me.
Not all Strings can be converted to integers. The string you're trying to convert to a number is not a number. That's why you got the exception.
Aug 30 '07 #8
Not all Strings can be converted to integers. The string you're trying to convert to a number is not a number. That's why you got the exception.
Expand|Select|Wrap|Line Numbers
  1. String id="EAM9";
  2. id= id.substring(3,(id.length()));
  3. System.out.println(id);// it will print 9.
  4. //after this i want to convert id into integer.
  5.  
Aug 30 '07 #9
dmjpro
2,476 2GB
Expand|Select|Wrap|Line Numbers
  1. String id="EAM9";
  2. id= id.substring(3,(id.length()));
  3. System.out.println(id);// it will print 9.
  4. //after this i want to convert id into integer.
  5.  

I tested this Code.
And it works fine.

Expand|Select|Wrap|Line Numbers
  1. String id="EAM9";
  2. id= id.substring(3,(id.length()));
  3. System.out.println("Dmjpro: " + id);
  4. Sstem.out.println("Debasis Jana: " + Integer.parseInt(id));
  5.  
Kind regards,
Dmjpro.
Aug 30 '07 #10
JosAH
11,448 Expert 8TB
Expand|Select|Wrap|Line Numbers
  1. String id="EAM9";
  2. id= id.substring(3,(id.length()));
  3. System.out.println(id);// it will print 9.
  4. //after this i want to convert id into integer.
  5.  
Can you print out the *length* of that id String as well? I suspect some trailing
spaces or non-printing character there.

The example as it is runs fine for me.

kind regards,

Jos
Aug 30 '07 #11
dmjpro
2,476 2GB
Can you print out the *length* of that id String as well? I suspect some trailing
spaces or non-printing character there.

The example as it is runs fine for me.

kind regards,

Jos

yeah Jos you are right.
There may be some leading or trailing spaces or non-printing Chanracter.

Kind regards,
Dmjpro.
Aug 30 '07 #12
It is working fine.Thank you very much for all your responses.
Aug 30 '07 #13
JosAH
11,448 Expert 8TB
It is working fine.Thank you very much for all your responses.
So you didn't change anything and all of a sudden it works fine? I hope you don't
mind if I don't believe that; care to elaborate on what you changed? It may come
in handy for others who are struggling with the same problem and try to google
for it; google might point them to this thread.

kind regards,

Jos
Aug 30 '07 #14

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

Similar topics

2
by: Joel Moore | last post by:
Maybe I'm just easily baffled after an all-nighter but I can't seem to figure out how to represent a BitArray as a hexadecimal string. For example: Dim outputBank As New BitArray(8) ...
4
by: Eric Lilja | last post by:
Hello, I've made a templated class Option (a child of the abstract base class OptionBase) that stores an option name (in the form someoption=) and the value belonging to that option. The value is...
4
by: aevans1108 | last post by:
expanding this message to microsoft.public.dotnet.xml Greetings Please direct me to the right group if this is an inappropriate place to post this question. Thanks. I want to format a...
3
by: Convert TextBox.Text to Int32 Problem | last post by:
Need a little help here. I saw some related posts, so here goes... I have some textboxes which are designed for the user to enter a integer value. In "old school C" we just used the atoi function...
7
by: patang | last post by:
I want to convert amount to words. Is there any funciton available? Example: $230.30 Two Hundred Thirty Dollars and 30/100
6
by: patang | last post by:
Could someone please tell me where am I supposed to put this code. Actually my project has two forms. I created a new module and have put the following code sent by someone. All the function...
3
by: GM | last post by:
Dear all, Could you all give me some guide on how to convert my big5 string to unicode using python? I already knew that I might use cjkcodecs or python 2.4 but I still don't have idea on what...
4
by: tshad | last post by:
I am trying to convert a string character to an int where the string is all numbers. I tried: int test; string stemp = "5"; test = Convert.ToInt32(stemp); But test is equal to 53.
9
by: Marco Nef | last post by:
Hi there I'm looking for a template class that converts the template argument to a string, so something like the following should work: Convert<float>::Get() == "float"; Convert<3>::Get() ==...
0
Debadatta Mishra
by: Debadatta Mishra | last post by:
Introduction In this article I will provide you an approach to manipulate an image file. This article gives you an insight into some tricks in java so that you can conceal sensitive information...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
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...
0
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...
0
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...

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.