Where to find correct Java docs? - java

I'm using a new set of Java tools that I'm not entirely familiar with, for Birt report writing.
They're discussed here:
http://www.eclipse.org/birt/phoenix/deploy/designEngineAPI.php#concepts
Now normally the Oracle API site seems to have and explain everything I need, but I've been unable to locate anything Birt related there.
The most promising link I came up with through Google, and the above link was:
http://dev.eclipse.org/viewcvs/viewvc.cgi/source/org.eclipse.birt.report.model/?hideattic=1&root=BIRT_Project
However I'm finding that page difficult in navigating. I couldn't seem to find the grid, label, image classes and methods, etc that were mentioned in the first page's example. Have I missed them or are they in one of those folders? Or can they be found on the Oracle site?
Additionally, I will be looking for a class that allows a JDBC to SQLite. I haven't looked yet, but if anyone can tell me ahead of time a good one to use that would be helpful.

Try this link:
BIRT Programmer's Reference

Related

Indexing the content from URL in Java (Search Engine)

I would like to have some help in creating an index for the content that I saved in my database after crawling the URLs and removing the tags. I have been looking for solutions but couldn't find anything helpful yet. The thing is our instructor told us to not use Apache Lucene. I have no idea how to implement this and would like to get help in understanding this better.

DataSet Java Implementation?

I am trying to implement the DataSet type as described in the oracle docs here to later be implemented with a DataTable as described here. However, I can not seem to find the right library nor the right way to implement this datatype. Any help would be appreciated as every import I try doesn't know what the type is and I have tried to add the swingx library in addition but to no avail.Just as a note, I have tried the swingx library from here. However, even with added the import manually it still doesn't know this type. Is it possible the package changed since it looks like that documentation is from 0.8 when the library itself is much later?
org.jdesktop.DataSet is part of the SwingLabs API, whose website you can find from here.
The releases are located under downloads.
Edit:
I think I found a more complete package of the SwingLabs API... At the very least it should contain the dataset package. Link here

Editing/adding IPTC metadata in Android app

I have looked at many of the other similar questions but none of them seem to have a precise answer.
I'm working on an Android app that works with a lot of images. I am looking to add information to images by editing the value of their IPTC keyword tag (or other appropriate tags). I am using Metadata Extractor for reading metadata but this library doesn't support writing metadata.
I have looked at Apache Sanselan which doesn't seem to be appropriate because it has heavy dependency on java.awt (which is not available in Android). I'm aware of Imagero but I have not used it yet in the hope of finding a better open source library.
Has anyone come across such a library? I prefer it to be open source but even commercial suggestions would be appreciated.
Thanks in advance.
https://github.com/k3b/pixymeta-android/ is a fork of https://github.com/dragon66/pixymeta-android/ that implemented
single source for android and jave2se/awt
However there is still a lot of work to implement a simple to use api
Use http://sourceforge.net/projects/iim4j/ Won't work out of box, but can be adapted. I did it to add Copyright notice and Contact fields. Didn't tried other fields, as I didn't needed them. So that would be your bet.
Sorry, can't share the code.

JGoodies Forms Demo code

I must admit the fact Forms layout does save loads of time, wrt other Swing layouts. I did try out other examples from http://www.java2s.com/Open-Source/Java-Document/Swing-Library/jgoodies-forms/Catalogjgoodies-forms.htm and worked fine. However, i was more interested in the forms-demo code from the actual developer, is it available ? Couldn't find them, other than the executable jar file.
Did you see the com.jgoodies.forms.tutorial.building link in that page? Seems to link to a number of source code listings.
But see also the Java version of the Forms Demo at JGoodies|Downloads|Applications.
The site seems to have been reorganized since my last visit, but you can probably find those things from http://www.jgoodies.com/downloads/

AccessBridgeDebug.h missing?

I'm at my wits end with this Java Bridge, after trying to force it to do what I want in C# I've abandoned the idea and started to stagger my way through Visual C++, however I'm running into constant problems which I'm slowly resolving. Except this one!
I'm missing an include file called AccessBridgeDebug.h. << TL:DR read here.
I can't even compile ANYTHING that uses the includes for AccessBridge because they all reference the debug file, and it just flat out does not come with the package I downloaded, or the one prior to it on the website. Google yields 0 results for the search term "AccessBridgeDebug.h" which has caused me to realise I rely on google far too much.
Please, someone, help.
For those who have the same problem, the solution was fairly simple. The Java Access Bridge 2.0.2 only contains updated files, not the entire package. Furthermore, there is no readily available download link to the 2.0.2 full installer.
To fix it, go here: https://www.oracle.com/java/technologies/java-archive-downloads-java-client-downloads.html#accessbridge-2.0.1-oth-JPR (Located accessbridge-2_0_1-manual_install\src\bridge\src\AccessBridgeDebug.h)
And download the 2.0.1 full source. All the missing header/c++ files can be found in here.

Categories

Resources