0
votes
3answers
23 views
Labeling a 2D java array
I have created a 2D array and want to print the output. I want to label the columns and rows. I have labeled the rows. but I can not figure out how to label the columns. Something link this:
A B …
1
vote
2answers
21 views
Simulating a global revision number with git
How would I go about simulating a global increasing revision number for every commit in the git main line?
So, after I commit I would like a script to run increases a number somewhere.
This will …
0
votes
2answers
12 views
Embedded Prolog Interpreter/Compiler for Java
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constraint …
0
votes
1answer
32 views
+250
Enable pdf caching in IE
At first, caching didn't work in all browsers. Then I made it work in all browsers but IE (IE8) by adding .pdf extension to the url. Servlet stopped being called after that.
I display pdf file inline …
0
votes
2answers
41 views
How to make this regexp work in javascript?
I'm trying to transfer the following URL validation function from my PHP code to my javascript code:
this.validate_url = function(field)
{
var pattern = new …
4
votes
1answer
37 views
Java aware merge command
Every time I see a conflict on something like imports or method signature changes (e.g. renames of variables) in my SCM I wonder if there is something like a language aware diff/merge method that can …
1
vote
1answer
48 views
+100
Hot Deploy of development changes with Eclipse, Tomcat, and Jetspeed
Hi,
I am developing a Jetspeed portal application running on Tomcat, using the Eclipse IDE with the Sysdeo Tomcat launcher plugin to enable debugging of the application running in Tomcat/Jetspeed.
I …
0
votes
2answers
81 views
I’ve written a java getting-started tutorial, where would be a good site to post it for checking?
Hi all,
For our company's internal training, I'm writing a java getting-started tutorial. This will go all the way from installing eclipse through to writing a working demo application with Struts, …
3
votes
13answers
3k views
How do I count the number of occurrences of a char in a String?
I have the string
a.b.c.d
I want to count the occurrences of '.' in an idiomatic way, preferably a one-liner.
(Previously I had expressed this constraint as "without a loop", in case you're …
0
votes
3answers
57 views
encryption/decryption & java - basic questions
I have to implement the following scenario.
User calls a webservice sending a request with a text which must be encrypted by my service if it isn't encrypted. After that it should be stored in the …
1
vote
5answers
56 views
Make Java runtime ignore serialVersionUIDs?
I have to work with a large number of compiled Java classes which didn't specify explicitly specify a serialVersionUID. Because their UIDs were arbitrarily generated by the compiler, many of the …
1
vote
1answer
89 views
JSF, writeAttribute(”value”, str, null) fails with strings obtained through ValueExpression.getValue()
Hello,
I'm having a somewhat weird problem with custom JSF component.
Here's my renderer code:
public class Test extends Renderer {
public void encodeBegin(final FacesContext context,
…
0
votes
1answer
13 views
Using HttpCore from a blackberry
I am trying to port an android app to run on a blackberry 8800. One of the classes makes http requests through apache HttpCore.
I get the following error:
The type java.lang.reflect.Type cannot be …
2
votes
7answers
109 views
Java short circuit evaluation
I thought Java had short circuit evaluation, yet this line is still throwing a null pointer exception:
if( (perfectAgent != null) && (perfectAgent.getAddress().equals(entry.getKey())) ) {
…
0
votes
2answers
18 views
Java Clip (Sound / Audio) Memory Leak after closing with close()
The following code creates a new audio clip, plays it, sleeps for 3 seconds and then closes it when it is finished playing. Despite the call to close(), I am watching the memory usage of the jvm go up …
