Click here to Skip to main content
16,010,392 members
Home / Discussions / Java
   

Java

 
GeneralRe: THREADS Pin
pasztorpisti25-Aug-12 11:14
pasztorpisti25-Aug-12 11:14 
GeneralRe: THREADS Pin
Richard MacCutchan25-Aug-12 21:33
mveRichard MacCutchan25-Aug-12 21:33 
QuestionRead Barcode from mobile and show the product type Pin
Sahil Mahajan Mj24-Aug-12 22:47
Sahil Mahajan Mj24-Aug-12 22:47 
AnswerRe: Read Barcode from mobile and show the product type Pin
TorstenH.25-Aug-12 0:58
TorstenH.25-Aug-12 0:58 
GeneralRe: Read Barcode from mobile and show the product type Pin
Sahil Mahajan Mj25-Aug-12 1:17
Sahil Mahajan Mj25-Aug-12 1:17 
GeneralRe: Read Barcode from mobile and show the product type Pin
TorstenH.27-Aug-12 3:07
TorstenH.27-Aug-12 3:07 
QuestionAlarm in android app Pin
ljpv1421-Aug-12 12:09
ljpv1421-Aug-12 12:09 
AnswerRe: Alarm in android app Pin
Peter_in_278021-Aug-12 12:43
professionalPeter_in_278021-Aug-12 12:43 
Mad | :mad: One of the essential debugging skills is reading what's in front of you.Mad | :mad:
ljpv14 wrote:
08-22 05:55:55.780: E/AndroidRuntime(625): FATAL EXCEPTION: main
08-22 05:55:55.780: E/AndroidRuntime(625): java.lang.RuntimeException: Unable to start activity ComponentInfo{dr.droid/dr.droid.MedicineReminder}: java.lang.NumberFormatException: Invalid int: ""
tells you that your app crashed because you are trying to parse an empty string as an int.

A few lines further down,
ljpv14 wrote:
08-22 05:55:55.780: E/AndroidRuntime(625): Caused by: java.lang.NumberFormatException: Invalid int: ""
08-22 05:55:55.780: E/AndroidRuntime(625): at java.lang.Integer.invalidInt(Integer.java:138)
08-22 05:55:55.780: E/AndroidRuntime(625): at java.lang.Integer.parseInt(Integer.java:359)
08-22 05:55:55.780: E/AndroidRuntime(625): at java.lang.Integer.parseInt(Integer.java:332)
08-22 05:55:55.780: E/AndroidRuntime(625): at dr.droid.MedicineReminder.onCreate(MedicineReminder.java:33)
even tells you where in your code the problem was encountered.
That may not be the line in error, but it's the one that's blowing up.

Who ever would have thought that we could get so much information from a few lines of error messages? WTF | :WTF:

Oh, by the way, you should be using code blocks when you paste your code.

Peter
Software rusts. Simon Stephenson, ca 1994. So does this signature. me, 2012

QuestionSOLID principle problem Pin
Neo1010121-Aug-12 7:36
Neo1010121-Aug-12 7:36 
AnswerRe: SOLID principle problem Pin
Nagy Vilmos21-Aug-12 7:57
professionalNagy Vilmos21-Aug-12 7:57 
QuestionObject parsing non-static Pin
Joshua Waring20-Aug-12 23:11
Joshua Waring20-Aug-12 23:11 
AnswerRe: Object parsing non-static Pin
Nagy Vilmos21-Aug-12 6:48
professionalNagy Vilmos21-Aug-12 6:48 
AnswerRe: Object parsing non-static Pin
jschell21-Aug-12 8:40
jschell21-Aug-12 8:40 
QuestionIs it a bug or featuere Pin
Amarap18-Aug-12 0:58
Amarap18-Aug-12 0:58 
AnswerRe: Is it a bug of featuer Pin
Manfred Rudolf Bihy18-Aug-12 2:11
professionalManfred Rudolf Bihy18-Aug-12 2:11 
AnswerRe: Is it a bug of featuer Pin
Gerben Jongerius18-Aug-12 2:12
Gerben Jongerius18-Aug-12 2:12 
AnswerRe: Is it a bug of featuer Pin
Eddy Vluggen18-Aug-12 2:28
professionalEddy Vluggen18-Aug-12 2:28 
AnswerRe: Is it a bug of featuer Pin
TorstenH.18-Aug-12 3:22
TorstenH.18-Aug-12 3:22 
AnswerRe: Is it a bug or featuere Pin
Gowtham Gutha15-Nov-12 7:25
Gowtham Gutha15-Nov-12 7:25 
Questionproblem while updating a file Pin
Namdeo Badhe17-Aug-12 7:07
Namdeo Badhe17-Aug-12 7:07 
Answerdouble post Pin
TorstenH.17-Aug-12 9:00
TorstenH.17-Aug-12 9:00 
Generalproblem while updating a text file in java Pin
Namdeo Badhe17-Aug-12 6:45
Namdeo Badhe17-Aug-12 6:45 
GeneralRe: problem while updating a text file in java Pin
Richard MacCutchan17-Aug-12 6:59
mveRichard MacCutchan17-Aug-12 6:59 
QuestionMessage Removed Pin
16-Aug-12 6:53
Member 936232116-Aug-12 6:53 
QuestionSwing Pin
Joshua Waring15-Aug-12 23:53
Joshua Waring15-Aug-12 23:53 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.