| Thread | Last Post | Replies |
|
| OWA with java library | 14 Nov 2006 06:27 GMT | 2 |
Anyone interested in a java connector to OWA? Thanks Tomer
|
| Wonky HTTP behavior? | 14 Nov 2006 05:37 GMT | 7 |
I'm fiddling with possibly making a custom web browser with a few extras (such as auto-retrying broken downloads (of pages, images, files...), one-click ad blocking, one-click referrer spoofing, referrer spoofing when retrieving non-text/foo content-types by default,
|
| Layout problems | 14 Nov 2006 02:13 GMT | 1 |
I have a JList which is inside a JScrollPane (which is in a hbox which is in a vbox): http://i.math.drexel.edu/~pg/scroll.png If the single entry in the list happens to be too long, scrollbars show
|
| Simple URL encoding technique? | 14 Nov 2006 01:24 GMT | 6 |
My JSP application asks users to visit a web site with a URL of the form <www.example.com?column=100&row=200>. This makes it far too easy for an intruder to derive a different column and row that may yield a real location to which they should not have access. Is there an
|
| java calc | 14 Nov 2006 01:22 GMT | 6 |
A java calculator a jar file in dist_calc.zip double click in windows, or run java -jar javaapplication7.jar source files in javaapplication7.zip, unzipped will open as a netbeans
|
| checking class type alternative to instanceof | 13 Nov 2006 22:48 GMT | 3 |
Can I check if a class is an implementation of an interface by name without instantiating it? So I can do this: if (Class.forName("com.company.package.myclass").newInstance()
|
| Learning Java? | 13 Nov 2006 22:18 GMT | 10 |
Whats the best tool to develop using java? Also whats the best resource for learning Java? Thanks Dennis
|
| Netbeans: how to export libraries to other projects? | 13 Nov 2006 21:49 GMT | 2 |
I'm used to eclipse and want to give netbeans a try. I try to set up some projects and am having problems. Suppose I have a project A that uses some library X (as defined in the library manager).
|
| HTML front-end, Servlet/JSP/Struts/JSF? | 13 Nov 2006 20:21 GMT | 3 |
The Prodigal Son returns... I have an older app I originally wrote using servlets. I wrote it somewhat JSP-like, as it was before JSP was even available. But that's not really my question...
|
| Preloading Images with Java Applet | 13 Nov 2006 19:42 GMT | 1 |
Does anyone know how to preload images in a java applet for use by the browser (internet explorer) Right now when I preload using getImage() and prepareImage() the images are stored in the java console cache so the browser doesnt
|
| join in my group | 13 Nov 2006 18:17 GMT | 2 |
Hi RamaSarma again. u can join in my group.. there u can find books/ links and some code examples my group name is javacodeidngexamples@googlegroups.com
|
| java and ssh/sftp | 13 Nov 2006 17:39 GMT | 3 |
Hello, I'm hoping someone can give me a suggestion on solving a programming problem. I have a java program which generates new versions of content for a website. After the new content files have been created we need to use sftp to transfer the files to the remote site, and then ...
|
| Stranger compiler error? | 13 Nov 2006 13:24 GMT | 17 |
I found a strange compiler error when writing the code below. The next program compiles and runs fine. In fact if I replace the error line with the null statement it compiles just fine or if I just put the braces around the error line it compiles. Needless to say, this has
|
| Regex pattern problem | 13 Nov 2006 11:10 GMT | 1 |
I was writing a quick-and-dirty regex to search html text and pull out the source url from IMG tags. I first tried: Pattern p = Pattern.compile("<img (?:[^>]* )?src=\"([^\"]*)\""); (I know that this pattern makes all kinds of unwarranted assumptions about
|
| speeding up URLConnection reading | 13 Nov 2006 08:26 GMT | 10 |
I want to read the content of some webpages and make some string comparisons with them (i.e. check if there is some text in it, use some regular expressions, etc.). StringBuilder htmlCode = new StringBuilder();
|