Android :: Using Java.util.regex In Android Apps

Apr 2, 2010

In an Android app I have a utility class that I use to parse strings for 2 regEx's. I compile the 2 patterns in a static initializer so they only get compiled once, then activities can use the parsing methods statically.

This works fine except that the first time the class is accessed and loaded, and the static initializer compiles the pattern, the UI hangs for close to a MINUTE while it compiles the pattern! After the first time, it flies on all subsequent calls to parseString().

My regEx that I am using is rather large - 847 characters, but in a normal java webapp this is lightning fast. I am testing this so far only in the emulator with a 1.5 AVD.

Could this just be an emulator issue or is there some other reason that this pattern is taking so long to compile?

CODE:.......................

Android :: Using java.util.regex in Android apps


Android :: Cannot Import Droid.text.util.Regex / Where Is It?

Aug 10, 2010

I'm developing an application and I want to use android.text.util.Regex.WEB_URL_PATTERN as the pattern for the Linkify. But, as I have notice, I cannot import android.text.util.Regex for some reason.

Why so? Is there a way to workaround this?

View 2 Replies View Related

Android :: What Is Regex Pattern For HTML Tag In Java?

Mar 11, 2010

I have this tag as input tag: <a href="controller.jsp?sid=127490C88DB5&R=35144" class="11-link-dkred-bold"><b>Mr. John Q. Anderson MBA 1977 E</a> in this i want get the value.

View 2 Replies View Related

Android :: Java Regex ReplaceAll Does Not Replace String

Aug 31, 2010

I want the text "REPLACEME" to be replaced with my StringBuffer symbols. When I print symbols, it is a valid string. When I print my query, it still has the text REPLACEME instead of symbols. Why?

CODE:...............................

View 3 Replies View Related

Android :: Trying To Parse Links In An HTML Directory Listing Using Java Regex

Mar 30, 2010

Ok I know everyone is going to tell me not to use RegEx for parsing HTML, but I'm programming on Android and don't have ready access to an HTML parser (that I'm aware of). Besides, this is server generated HTML which should be more consistent than user-generated HTML. The regex looks like this: Pattern patternMP3 = Pattern.compile. Code...

View 3 Replies View Related

Android :: Util Class In Java

Sep 3, 2010

I want to know about the util Class used in Java. I am currently working on one Application in Android where I need to used a class from one file to another different file. I was told to import it like "import com.android.utli.(ClassName)" here the "com.android.util" is a package name.

Can I use thast class in my another file simply by importing the package along with the Class Name?

View 2 Replies View Related

Android :: Java.util.TimerTask

Jan 15, 2010

Can I rely on Timer and TimerTask to work properly on Android?

I have a background Service with a single Timer, and I schedule (possibly multiple) TimerTask's via Timer.schedule()

At the beginning of each implemented TimerTask.run() method, I check the TimerTask.scheduledExecutionTime() and compare it with the current time. Sometimes things are fine, and the difference is a small number of ms. But sometimes things are nowhere near fine, and the invocation of my TimerTask is *way* late -- like multiple hours late.

Can an Android phone go into some deep sleep mode when it doesn't think anything is going on that would cause a TimerTask to be so late? Can I not reliably use TimerTask for scheduling events, and should I be using some Android-specific means (e.g. the AlarmManager, or a Handler) instead?

I have not found anything that says that java.util.TimerTask shouldn't be sufficient, the Android docs include no kinds of qualifiers, and this post (from Mark Murphy, who's written several good Android books) specifically mentions it as being available:

http://groups.google.com/group/android-developers/browse_thread/threa...

View 5 Replies View Related

Android :: Creating Java.util.Map

Jan 22, 2010

I want to create a java.util.map in android from a resource. I want to do this because I have a lot of entries to populate into the java.util.map and I want to store the values in the res folder of the project in xml format.

Is there an effecient way to do this in android? My map will have around 2500 entries so I want to do this as effeciently as possible and I don't want to hard code them...

View 1 Replies View Related

Android :: Java.util.concurrent.ConcurrentLinkedQueue

Apr 14, 2010

I want to use ConcurrentLinkedQueue in an android application, have written the code, but now I'm getting an error when the project builds:

Conversion to Dalvik format failed with error 2

I'm using Eclipse with the lastest version of the ADT plugin.

View 1 Replies View Related

Android :: Java.util.Random Caching

Apr 19, 2010

That is the only thing I can think of. When I generate a random number (for the radius of a ball), after a while, the radius goes to one number and sticks that way. I've even tried setting the random number value to 0 before getting the random number, and java.util.Random must be at fault, it still gives the same random number. Here is an apk if you would like to try it yourself: http://74.118.194.50:84/Balls.apk

Here is a snippet of the code (I would rather not release the full source): <code> Random randomizer = new Random(System.currentTimeMillis()); int hw; hw = randomizer.nextInt(95-15+1)+15; </code>

View 4 Replies View Related

Android :: Is Java.util.Scanner That Slow

Mar 15, 2010

In a Android application I want to use Scanner class to read a list of floats from a text file (it's a list of vertex coordinates for OpenGL). Exact code is:

CODE:.................

It seems however that this is incredibly slow (it took 30 minutes to read 10,000 floats!) - as tested on the 2.1 emulator. What's going on?

I don't remember Scanner to be that slow when I used it on the PC (truth be told I never read more than 100 values before). Or is it something else, like reading from an asset input stream?

View 4 Replies View Related

Android :: Java.util.Calendar - Time Difference

Jul 29, 2009

I want to make calendar view in order to support touch interaction. So I'd like to build new custom calendar view. I tried to make mapping function between view offset and real date value.

Here is my idea:
If I can compute the number of weeks since base date(in my case, 1989-12-31), it is easy to know offset. HEIGHT_FOR_WEEK * NUM_OF_WEEK is very simple computation to know exact offset.

My problem is this:
First I got milliseconds value from base date. And I set the milliseconds to another calendar object. I expected same date from that object. But actually it was different date.

CODE:...............

Here is my CODE:.........................

View 2 Replies View Related

Android :: Weird Behavior Of Java.util.Preferences

Sep 25, 2009

My app needs to save its state before being killed, and since that state is really small (one Long), I've decided to use java.util.Preferences. I use it like the way I would be using in any Java application (and never had problems), though I am not sure this is the correct way here on Android platform: private static final Preferences prefs = Preferences.userNodeForPackage (WordChoice.class);

I update preferences in onPause() method, to ensure that data is always persisted no matter how my app ends: Here is that fragment of code: protected void onPause() { super.onPause(); prefs.putLong("currIndex", somePositiveValue); }

View 2 Replies View Related

Android :: AsyncTask : Java.util.concurrent.RejectedExecutionException

Apr 7, 2010

I'm trying to launch a lot of remote connection retrieve picture on a server. To do this, I use AsyncTask.

This pics are displayed in a listview using adapter.

If I implement this in my adapter, images are retrieved but the display is bad (problem with index or something like that).

If I try to retrieve image when I build my object list (contained in my listview), I get the exception 04-07 13:35:57.744: ERROR/AndroidRuntime(4132):

CODE:.................

What is this exception ? Why I can launch multiple asynctask in my listview (giving to me a bad result) and not in a simple object without having this issue ?

View 6 Replies View Related

Android :: Java.util.Date Vs Text.format.Time

Oct 26, 2010

Which one should I use java.util.Date or android.text.format.Time? It seems you can accomplish what one needs to do with either. What I need to do is at times get the current date and time and sometimes set a date and time specified by the user.

View 5 Replies View Related

Android :: Simple Converting Java.util.Calendar To Time

Nov 12, 2010

I'm creating a android.text.format.Time Object from a java.util.Calendar Instance, and I read it out field by field.

View 1 Replies View Related

Android :: Class Initialization Issues Loading Java.util.logging.LogManager In Dalvik VM

Mar 18, 2010

I've done changes in an Android native library and installed a new system.img file but am now getting an unrelated Error on startup. I can get past it by swallowing the error but I wanted to know if anyone can explain what the issue is.

The Android implementation of Logger.java claims that it is Forcing the LogManager to be initialized since its class init code performs necessary one-time setup. But this forced initialization results in a NoClassDefFoundError. I'm thinking that it has something to do with the class not having been preloaded by Zygote yet but am not that familiar with the whole class loaders and VM business.

code:....................

View 5 Replies View Related

Android :: Error: Java.lang.IllegalArgumentExcep­tion: Already Added - Lnet/ponder2/Util

Oct 27, 2009

I am using the Eclipse plugin and I have the above error. I know why it is occurring, it is because I want to override a class file in one of my imported jar files. I am including a new Util class before the jar file in question. I have tried it both as a simple .class file in my package hierarchy and I have tried putting it into another jar file and including it before the one to be overridden.

I would like it to behave like the Java classpath and use the first one it comes to when running through all the classes. I don't mind if dex wants to give me a warning that it is not using the second Util.class file but it should let me build my application. To build my app, I have to create a special jar file without the old Util.class in it. This is annoying as I would like to use the bog standard version so that others can use it with ease too.

View 3 Replies View Related

Android : Data And Format Them Using RegEx

Nov 17, 2010

I'm having three strings that I have to glue together.

I have an input string (string 1), which I have to run a regex (which has groups) on (string 2) and extract these groups to put them in a template (string 3) using backreferences.

A short example could be :

input: "foo1234bar5678"
regex: ".*?(d*).*?(d*).*"
template: "answer: $1 $2"

which should be expanded in "answer: 1234 5678".

I have been using java.util.regex.Pattern, but I can't figure out a way to do this with matchers. Obviously, replaceAll is not the expected behaviour, nor is append*.

Is there a way to do this nicely using the android API ?

EDIT:
Here is a basic implementation :

public static String genOutput(String regex, String input, String template) {
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
if (m.find()) {
for (int i = 1; i <= m.groupCount(); i++) {
template = template.replaceAll("$" + i, m.group(in}} return template;}

View 4 Replies View Related

Android :: Util.SparseArray Space Time Complexity Properties

May 19, 2009

I need a map from int to certain objects. I wanted to use the HashMap, but in the documentation of SparseArray it says that SparseArray is intented to be *more efficient*: http://developer.android.com/reference/android/util/SparseArray.html

However i think the documentation is not entirely correct and needs more info: When reviewing the sourcecode of SparseArray and comparing it with the HashMap i come to the following conclusion

Source code of Sparse Array: [url]

For SpareArray: Time complexity for reads and writes on a map of size N is log2(N) + 1,

However the time complexity for a HashMap of size N is C*N (where C is a constant) (according to the javadoc [url]

So maybe SparseArray is more efficient with respect to space complexity it is not for time complexity. So for programs that need high performance a HashMap may be better.

At least thats what i think. Am i right? Am i wrong? I need a very fast implementation for my game.

View 4 Replies View Related

Android : Write A Wifi Cracking Util For Phones / Monitor Mode Vs Multicast?

Jun 23, 2010

Considering writing a wifi cracking (wep, wpa) auditing tool for the android platform, but I am wondering if it is possible to do without a rooted phone.

I had thought it would be impossible to run on an unrooted phone due to the phones wifi chip ignoring packets not addressed to the phone. That is, without the ability to set the wifi chip to monitor mode many of these attacks wont work. I was surprised to learn that android supports multicast packets. That is, android phones can be set to receive packets not addressed to them.

My questions are: Does having a multicast lock mean I can receive all packets broadcast, or does it only apply to packets with a multicast flag (if such a thing exists)?

Is there a difference between monitor mode and multicast? Does the android api have a system for switching channels?

More generally I'm curious: Is anyone familar with other wifi cracking projects running on android (google searches turned up very little)?

What difficulties am I likely to run into?

This question is related to SO question Is there anyway to put Android WIFI (droid handset) into permiscuous monitoring mode?

View 1 Replies View Related

Android :: Start To Build Droid Apps Apart From Learning Java / Steps For It?

Sep 21, 2010

Apart from knowing a bit of C, I have no experience in software development.I want to know from where to start learning to build android applications apart from learning java? What are the steps?

View 2 Replies View Related

Android :: Porting Java Apps To Android Platform

Oct 16, 2009

I know Java apps can be run in Android. But what I want to know is this: I have a perfectly normal Java app and I want to port it to an android platform. What changes would I need to do to my app in terms of GUI and other code to make it usable in Android? I know Android uses XML file to control the look and feel of its app. So would I need to change my GUI completely? I just want to know the general overview of how porting may be done. If anyone could point me to right resources, that would be great. Also, for your info I'm a newbie to developing android app.

View 3 Replies View Related

Android :: Apps For Android - Language - Except Java

Sep 10, 2010

Possible Duplicate:

Alternatives to Java for Android development?

I want to make apps for Android (Mobile OS) what other language(s) can i make them in EXCEPT java?

View 3 Replies View Related

Android :: Importing Java Apps Into Android

Jun 24, 2010

How to import/compile and deploy existing Java (standard edition - 1.5+ ) apps into the Android platform? Or would generating a project from scratch and importing the classes incrementally into the project from the existing project the best way?

View 6 Replies View Related

Android :: Creating Android Apps Without Java

Sep 10, 2010

I'd like to start creating Android apps but I don't like Java. I read that scala can be used to do it. Are there another option?(Clojure?) I'm a Python/Django developer so it would be great to learn a pretty different language.

View 7 Replies View Related

Android :: How To Reference R.java Of Other Apps In Android - Like Com.android.music

Sep 29, 2010

I am trying to develop an app to supplement the built-in music player. I've used git to download the com.android.music package and looked around at its code. I can launch the music player by copying some of its code and launching activities with intents.

Now what I need to do is get a handle to its current view. In the MusicUtils.java file, I see a line that says

View nowPlayingView = a.findViewById(R.id.nowplaying);

I'd like to do the same thing. Only I don't have access to the R.java file, so I can't write e.g. R.id.nowplaying. How do I do this? How do I reference the music players R.java? I do know the R.java stuff is declared public so that shouldn't be a problem. Right?

Is it even possible? I saw this related question and am now wondering: http://stackoverflow.com/questions/2437271/how-to-load-com-android-music-code-into-eclipse-and-compile

I'm working against the Android 2.2 SDK, but it'd be helpful to know if the answer is different for older versions such as 1.5.

View 2 Replies View Related

Android :: Call Java File On Click In Another Java Class?

May 19, 2010

i have two files

App.java
Gallery.java

App. java contains frontend buttons and functionalities Gallery.java lists the imagesin the sd card. i want to call Gallery.java in click event in app.java

App.java
package gallery.display;
import android.app.Activity;
import android.os.Bundle;
import android.view.View.OnClickListener;
import android.view.View;...........

View 1 Replies View Related

Android : Can Not Call A Java Method Using Add Java Script Interface()

Mar 16, 2009

I'm trying to call a java method from javascript using addJavascriptInterface(); but seems does not work, it always display "failure"; java code...

View 2 Replies View Related

Android :: Java.io / Java.Lang Different From Packages In Windows?

Aug 8, 2009

Java packages like Java.io, Java.Lang etc used in android, are they different from Java packages in windows ? means specially made for android ?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved