Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Eclipse on a Java project which involves ICU4J 3.4.4 which will be running on mobile devices.

The ICU4J 3.4.4 is a few megabytes and I need to cut this down. I am only using the Normalizer class

Is there an easy way in Eclipse to move the Normalizer class into a new project along with its dependencies on other classes and so forth? I tried the move feature but it only brings across the Normalizer class

I am also happy to use any other tool to achieve this

share|improve this question

1 Answer

Eclipses actually packages a small "base" version of the ICU4J stuff. For example on this download page: http://download.eclipse.org/eclipse/downloads/drops/R-3.7.1-201109091335/index.php, look for "com.ibm.icu.base" which is only 1/3MB. Hopefully this will be small enough.

share|improve this answer
Unfortunately the jar does not contain the com.ibm.icu.text.Normalizer class I need – user964283 Dec 15 '11 at 10:35
I don't know of anything that will move the dependent classes, but you should be able to keep moving classes until it works. Or get the source and chop out what you don't need. – Francis Upton Dec 15 '11 at 15:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.