0
votes
5answers
113 views

Convert time value to format “hh:mm Am/Pm” using Android

I am getting date value from database like "2013-02-27 06:06:30" using StringTokenizer I will get time separately like below String startTime = "2013-02-27 06:06:30"; StringTokenizer token = new ...
1
vote
2answers
303 views

Java Split String Using Delimiter [duplicate]

Possible Duplicate: Matching a “.” in java I have a String 1.2.4 which i want to split and get 2 to compare it with another String that i get. I am trying to do the following ...
1
vote
3answers
293 views

StringTokenizer for split space

I have strings follow format: 2012.11.15 22:00:00 1.2971 1.2974 1.2959 1.296 I use follow code: DateFormat df = new SimpleDateFormat("yyyy.MM.dd HH:mm:ss"); String inputLine; ...
3
votes
0answers
2k views

AutoCompleteTextView backed by CursorLoader

So I am having trouble extending the MultiAutoCompleteTextView and backing it with a CursorLoader, while simultaneously using a custom Tokenizer. The issue rises specifically with the ...
1
vote
2answers
264 views

Android StringTokenizer - reading blank values

I have pipe delimited strings containing id, latitude, longitude, refname, userid, username: 1390|-32.5506782531738|18.9797592163086|Hardie - Vrede 4|21|Hardie van der Merwe ...
0
votes
2answers
117 views

Need a better method of reading and storing values from text file

Goal: to get values from a text file and store it into values to load into my sqlite database. Problem: My method is not efficient, and I need help comming up with an easier way. As of right now I ...
1
vote
1answer
56 views

Can we split a string that has one of its delimeters in Android

I have a string like 1264$LP@$JOHN TAYLOR VS NJ Traffic$LP@$0$LP@$. I want to split this string with $LP@$ as a delimiter but this contains L (in TAYLOR) so while it should return 1264 JOHN TAYLOR VS ...
0
votes
1answer
283 views

Text to Speech Android

I am trying to create a Text to Speech app that will remember the last sentence or part of the sentence after a comma where it was when the app is paused. Below is my code. @Override public void ...
0
votes
2answers
312 views

android replace delimeter with newline

I have a string which has delimiter in it. I want to know the best way to replace the delimiter with a new line. I have had various issues with using the String Tokenizer the main problem being ...
1
vote
5answers
473 views

Break String into Sub-Strings, Android

I am making a program which would have the user enter a sentence and following that, the app would break the String into sub-strings where spaces are what break the original string up. import ...
0
votes
1answer
1k views

Parsing text file line by line to array using BufferedInputStream with RTL characters in Java

Guys I need to understand something: the \n comes at the begining of a new line currect? If so, I am trying to parse a file that has RTL characters in it and they are at the begining of a line, so: ...
1
vote
1answer
993 views

StringTokenizer, JSON and comma's

I have a problem reading in strings with comma's within a JSON object within my Android project. A working JSON string is below: {"success": "[TG2301_Stoke Holy Cross, TF7439_Thornham Corner, ...
0
votes
0answers
133 views

Which is slower, StringTokenizer or SQLite insert

I'm making a flashcard app, that has about 1000 words in 6 different languages (total 6000 words). They initially are in a text file, and when the app first runs, I install into the SQLite database ...
0
votes
3answers
1k views

Caused by: java.util.NoSuchElementException

Hello all i am working with following code code is work fine with below string StringTokenizer st = new StringTokenizer("abc,koch, Ranchi, zalkhand, NY, 10001, India"); but when i remove any ...
0
votes
5answers
349 views

How to seperate state, city, zipcode,contry etc. from address string?

I want to separate street, city, state, country, zip code String = Kanaka, Ranchi, zalkhand, 10001, India public class Test extends Activity { /** Called when the activity is first created. */ ...
1
vote
1answer
346 views

Why are foreign characters not read using inputStream?

I have a text file which contains data I need to preload into a SQLite database. I saved in in res/raw. I read the whole file using readTxtFromRaw(), then I use the StringTokenizer class to process ...