Tagged Questions
The java-api tag has no wiki summary.
233
votes
9answers
33k views
Examples of GoF Design Patterns
I am learning GoF Java Design Patterns and I want to see some real life examples of them. Can you guys point to some good usage of these Design Patterns.(preferably in Java's core libraries).
Thank ...
10
votes
1answer
109 views
android java implementation flaws .. are they documented?
I'm playing with a simple android app using the emmulator running android-7 (2.1) and a moto-defy running android-8 (2.2).
I ran into an interesting problem whereby a CSV parsing application failed ...
8
votes
1answer
66 views
Why does the nullPrintStream() function in java/lang/System compare currentTimeMillis() to zero?
When loading the System class, the <clinit> method instantiates the in, out and err PrintStream variables to null using the nullPrintStream() method:
private static PrintStream ...
6
votes
2answers
391 views
Java Dynamic Code Generation with support for generics
Is there any tool which provides Java dynamic code generation and that also supports generics?
Javassist for example, is the kind of tool that I need, but it does not support generics.
I wrote a ...
5
votes
3answers
258 views
Why is the java.util.Scanner class declared 'final'?
I use the Scanner class for reading multiple similar files. I would like to extend it to make sure they all use the same delimiter and I can also add methods like skipUntilYouFind(String thisHere) ...
4
votes
5answers
431 views
What is standard for Interface naming in java api
I am asked by one of colleague about the Throwable class in java API.
As per standard, I do understand, every word ending *able is a interface in java API. There is a industry standard about using ...
4
votes
3answers
5k views
Download Java API Documentation? [closed]
How can I get Java API Documentation for studying offline?
http://java.sun.com/javase/reference/api.jsp
3
votes
1answer
262 views
Convert .mht files to pdf files using java
Is it possible to convert MHTML(.mht) files to pdf with proper css rendering.
Tried using pd4ml but the extenal css and links refered in .mht file fails to get loaded in the pdf genrated.
3
votes
6answers
114 views
Java API Method Run Times
Is there a good resource to get run times for standard API functions? It's somewhat confusing when trying to optimize your program. I know Java isn't made to be particularly speedy but I can't seem ...
2
votes
2answers
131 views
How to create a ruby API for a java application
I have a web application written mostly in Java. There are a few users that hope to use ruby to tailor this application to suit their own needs. How would I write an API that allows Ruby developers to ...
2
votes
5answers
191 views
Is there an Equivalent of .Net framework's Random.Next(Int32, Int32) in the Java API?
I am working on porting an existing VB.Net application to Java, and could not find an equivalent to Random.Next(Int32, Int32).
I could find only java.util.Random.next(int val) in the Java API.
Is ...
1
vote
2answers
211 views
Any Java API available for office/pdf documents
I'm manipulating following files in my application (android).
Microsoft office files ( doc, docx, xls, xlsx, ppt and pptx)
PDF files and
XPS documents
I need the page numbers of these types of ...
1
vote
3answers
970 views
Write specific line into file
I'm trying to write line into a file at line-position n.
Even if line n isn't present. In that case the file has to grow with empty lines to reach n. Basically something like writer.writeLine(n, ...
1
vote
1answer
554 views
Off-Line Java API Documentation in Eclipse?
Is there an integration of any other off line way to get the Java API docs?
1
vote
5answers
1k views
Saxon XPath API returns TinyElementImpl instead of org.w3c.dom.Node
I have the following code:
// xpath evaluates to net.sf.saxon.xpath.XPathEvaluator
XPath xpath = XPathFactory.newInstance().newXPath();
XPathExpression expression = xpath.compile("/foo/bar");
...
1
vote
1answer
511 views
String javax.xml.xpath.XPathExpression.evaluate(Object item) guarantees it never returns null in all implementations?
From the JavaDoc: returns: The String that is the result of evaluating the expression and converting the result to a String.
/**
* ...
* ...
* @return The <code>String</code> that is ...
1
vote
1answer
296 views
using wiimote on windows xp
I'm looking for a reliable java api for wiimote. and it should run under windows xp. does anybody here know one?
0
votes
0answers
43 views
Why does AbstractMap use generic types and standard Objects interchangeably? [closed]
Possible Duplicate:
What are the reasons why Map.get(Object key) is not (fully) generic
http://docs.oracle.com/javase/1.5.0/docs/api/java/util/AbstractMap.html
For example, the put method ...
0
votes
3answers
157 views
Convert SMS from text to PDU format Java
Is there any java library for encoding mobile short messages from text to PDU format?
Any help will be appreciated.
0
votes
0answers
63 views
MetaMap and Matlab
Ok so this one may be a bit out there ...
Has anyone tried to call the NLM/NIH MetaMap Java api (http://mmtx.nlm.nih.gov/README_javaapi.html) from Matlab?
I can call it from the command line using:
...
0
votes
3answers
80 views
Which API does Java's jps tool use internally?
I need to recreate the functionalities of the jps tool programmatically. I need to find out all Java running processes along with their id so I can attach to that process (similar to what JConsole ...
0
votes
1answer
175 views
Java api for Sharepoint server
I would like to know if there is a java api for the sharepoint server.
Thanks a lot
0
votes
1answer
134 views
Akka-Camel integration module example using Java API
Can someone point me to an example of using Akka Camel integration module - using the Java API. I have a use case where a REST service is called that would start some Akka Actors in parallel to ...
0
votes
1answer
54 views
How to get URL for java Remember The Milk API?
i want to make an android application on java RTM API,but i don't know how to get authenticate to use the API.Actually i want to know how to make the URL for the same.
please help me...
0
votes
3answers
76 views
Does each java fuction end with a native method?
I back traced the calling paths of java API functions and finally ended with native methods.
Does each and every java-api function end with a native method ?
0
votes
1answer
193 views
How to save instances using Eucalyptus (Typica API)
I am a newbie to clouds and Eucalyptus, I used Typica Java API, it has method
createImage(instance_id, new_image_name)
but it fails and the error isn't shown, does Euclyptus support this ...
0
votes
1answer
267 views
Attach Javadoc to Eclipse for Java ME
I have just begun developing using J2ME using Eclipse Pulsar and I am trying to work out how you go about giving eclipse the associated javadoc for all of the CDLCs. I am using the Symbian S60 5th ...
0
votes
2answers
238 views
Is there any in-built API for solving complex math problems like integration and differentiation
I need to implement an algorithm which has intensive mathematical calculation. Is there already support in java for this? Or are there any 3rd party vendors who provide this support?
0
votes
1answer
38 views
How to inherit java classes in a Ruby on Rails environment
Background: I have a Java application that many programming clients interface with. Recently, a few clients wanted me to develop an API to allow them to inherit my application's Java classes in their ...
0
votes
2answers
2k views
Java API to convert RTF file to Word document (97-2003 format)
Is there any Java API available which converts .rtf files to .doc file (97-2003) format?
0
votes
1answer
58 views
Unable to get a Java API without obsoletes by Javascript
I regularly observe obsolete classes and methods in Java API.
I did not find Java API without obsoletes.
It suggests me that you need to filter Java API by your browser to get it more readable.
...
-1
votes
3answers
92 views
Error downloading file from a given URL
I am trying to download the given URL:
http://www.addic7ed.com/original/9521/7
but when i try to download the file using my Java Code:
URL url = new URL("http://www.addic7ed.com/original/9521/7");
...
-2
votes
1answer
84 views
Gmail API — Java [closed]
Can some one help me out with a Gmail Api.
It should have the feature like.
1. Send an email.
2. Read an email and also download the attachments if any.
Downloading the attachment is important.
...