1,044 reputation
18
bio website
location
age
visits member for 6 months
seen yesterday
stats profile views 66

1d
comment Append to XML file
safest way is to load file. make modification, then write file.
1d
comment Playing .wav file in java
Post the code you have tried, (the bit that tries to play a sound).
1d
comment Append to XML file
had and error fixed it.
1d
revised Append to XML file
fix errors
1d
answered Append to XML file
1d
comment JTable row sorter - IllegalArgumentException: Invalid SortKey
My guess is the table thinks it has no columns in it. what does customerTbl.getColumnCount() return?
2d
comment How to make website live? (From the point of having it as a Spring MVC project in Netbeans)
Probably best to ask your hosting provider how to do that. It varies from host to host.
2d
comment Potecting Properties file?
@Greg Kopff: Of course.
2d
comment Potecting Properties file?
@Greg Kopff, hard code it in the program.
2d
comment Potecting Properties file?
Usually a program will run with it's users permissions. So if the program has read/write access to a file, then the user running it will also have read/write access.
2d
comment Potecting Properties file?
You could encrypt it.
May
22
comment Framework for creating custom Java Servlets
HttpServlet is used for HTTP formatted requests, the port number is not relevant.
May
22
comment JavaScript to java, difference in Array Creation
your array looks fine.
May
22
comment JavaScript to java, difference in Array Creation
You may prefer to use a List instead of Arrays.
May
22
comment JavaScript to java, difference in Array Creation
A String is an object not a primitive.
May
21
comment Input value disables Enter key
It would useful to explain why return is required.
May
21
answered How to get a random number from a 2d coordinate and a seed?
May
21
comment How to get a random number from a 2d coordinate and a seed?
I do not understand your problem. If you call setSeed() on Random you will always get the same number back, if you use the same seed.
May
20
comment Using a JAXB XmlAdapter to adapt an entire list without a wrapper element
something like @XmlValue public void setBar(List<Bar> bars){this.Bars = new Bars(bar.get(0),bar.get(1));}
May
20
comment Using a JAXB XmlAdapter to adapt an entire list without a wrapper element
have you tried using a setter?