4,697 reputation
2421
bio website
location
age
visits member for 6 months
seen 7 hours ago
stats profile views 199

May
13
comment javaNullPointer on display.getRotation()
Btw, an easier way to find out where an exception is thrown is to read the error messages in the logcat. They give you the exact file and line number.
Apr
27
answered saving bytes to xmlfile. invalid Unicode-character
Apr
23
awarded  Revival
Mar
29
awarded  Fanatic
Mar
27
comment How to traverse through a adjacency matrix?
A simple recursion will do the trick. Mark the nodes you have already visited so that you don't visit them again. Btw. the graph is not necessarily a tree, your example is not.
Mar
24
answered how do you include user input in exception message java
Mar
23
comment How to “decode” eexec of font file?
Have a look at chapter 7 "Encryption"
Mar
23
answered How to “decode” eexec of font file?
Mar
21
comment adb push fails with Invalid argument
Are the blanks in the file name a copy paste problem or are they real? Also, don't use `\` as a file separator on Android.
Mar
20
comment Install Apk only once
Have a look at application licensing developer.android.com/google/play/licensing/index.html
Mar
20
revised ADB PUSH encoding
added 200 characters in body
Mar
20
answered ADB PUSH encoding
Mar
20
answered Frequency count of for loop
Mar
16
answered Mac List of ASN1 OIDs and Translations
Mar
16
revised Java List Errors Out of Range
added 91 characters in body
Mar
16
answered Java List Errors Out of Range
Mar
16
comment How to evenly space out radiobuttons in Android?
@rasen58 set the android:layout_width of the radio buttons to 0dp
Mar
16
comment Android : SyncException: Directory not empty?
maybe a duplicate of stackoverflow.com/questions/11178662/…
Mar
14
comment Error in copying sqlite database from assets
This new error comes from code you have not shown and the copy obviously worked now.
Mar
14
comment Error in copying sqlite database from assets
the IOException that is thrown probably contains important information. You could log it before you throw your Error (which by the way should probably be an Exception instead).