Forum: Java 4 Days Ago |
| Replies: 12 Views: 511 > How I go about getting documentantion?
Any JDBC tutorial out there should be good enough to get you started. The only difference would be the way the SQL driver is loaded. This ... |
Forum: Java 4 Days Ago |
| Replies: 12 Views: 511 > I don't understand what you mean by type 4
http://java.sun.com/products/jdbc/driverdesc.html
http://www.javaworld.com/jw-07-2000/jw-0707-jdbc.html |
Forum: JSP 6 Days Ago |
| Replies: 2 Views: 363 > Should I use Connection Pooling?
Depends; all real life projects use pooling but if you have just started out, cutting down the complexity by not bothering about pooling wouldn't be that bad.... |
Forum: JSP 6 Days Ago |
| Replies: 1 Views: 276 > JSTL main purpose is to only make your logic more readable
No, it's main purpose is separation of concerns and to make sure that you don't end up mixing your business and view logic. The ability... |
Forum: DaniWeb Community Feedback 6 Days Ago |
| Replies: 20 Views: 981 > At least it proves that Dani does still listen to what members of the
> community say...
Yeah, that's really a nice thing; especially when almost all the regulars are out on the streets baring... |
Forum: Java 6 Days Ago |
| Replies: 3 Views: 199 > Why use abstract classes at all? Why not just declare a class and
> then make sure you never instantiate any variables of that type?
...because compile time checks are far superior/efficient... |
Forum: DaniWeb Community Feedback 9 Days Ago |
| Replies: 20 Views: 981 > Well, 650,000 users cannot be involved in every single discussion.
I guess nor they would want to as many of them are here for a quick solution.
> Even 20 regulars who post in the feedback... |
Forum: DaniWeb Community Feedback 9 Days Ago |
| Replies: 42 Views: 1,896 > "Top Dog" is a common expression here in USA that means the boss or the leader
I'm very much aware of that expression but was expecting "brass" instead of "dog", hence that smiley. :-)
> I do... |
Forum: DaniWeb Community Feedback 9 Days Ago |
| Replies: 42 Views: 1,896 /me takes off the super-mod hat
> Here be tygers - and they don't like negativity
If someone treats the responses to all the threads in the Feedback forums as some kind of global conspiracy,... |
Forum: DaniWeb Community Feedback 14 Days Ago |
| Replies: 44 Views: 2,062 > overzealous, much?
Far better than a stalker with too much time on his hands IMO. |
Forum: Java 16 Days Ago |
| Replies: 8 Views: 421 > So what I need to know to be Java expert in Web and Desktop
> Applications?
Apart from the points already mentioned, I'd like to stress on reading good books/code. I've seen people churn out... |
Forum: Java 22 Days Ago |
| Replies: 2 Views: 290 NumberFormat is an abstract class; use its static factory method to get your choice of number formatter.public class MainTest {
public static void main(String args[]) throws Exception {
... |
Forum: Java 23 Days Ago |
| Replies: 2 Views: 395 The commas and the brackets are a part of the ArrayList class's toString() implementation. If you need your own row representation, either write your own method which does so or better yet, create a... |
Forum: JSP 26 Days Ago |
| Replies: 1 Views: 537 Anything placed in the JSP between the <%! %> tags [jsp declaration tag] is placed outside the service() method but inside the auto-generated servlet class. You can of course create a method... |
Forum: DaniWeb Community Feedback 30 Days Ago |
| Replies: 9 Views: 830 No, you are not going stupid. :)
I guess I've stumbled upon something. Let's search for the post highlighted... |
Forum: DaniWeb Community Feedback 31 Days Ago |
| Replies: 9 Views: 830 This issue was brought up & discussed (http://www.daniweb.com/forums/thread208180.html)to some lengths a couple of months back.
> As you can see I have no tags whatsoever in "plaintext"
This... |
Forum: DaniWeb Community Feedback 33 Days Ago |
| Replies: 80 Views: 6,486 > Thought this was a feedback forum. If moderators/admins don't like
> honest feedback, why not have a "Daniweb Community Feedback" for
> ****-lickers only.
Keep things on topic; there is... |
Forum: DaniWeb Community Feedback 33 Days Ago |
| Replies: 7 Views: 934 > i miss getting beat up by her.
You can of course pop in the Daniweb irc to get beaten down in real time... ;-) |
Forum: DaniWeb Community Feedback 34 Days Ago |
| Replies: 53 Views: 4,576 *sigh* Some people never learn....
Closed. |
Forum: DaniWeb Community Feedback Nov 15th, 2009 |
| Replies: 11 Views: 1,488 > How could a firewall cause the problem? both computers are using the
> same firewall.
Probably a configuration issue. You might want to try turning off the firewall for a couple of minutes... |
Forum: DaniWeb Community Feedback Nov 15th, 2009 |
| Replies: 11 Views: 1,488 Most probably your browser is not set to accept cookies from Daniweb which is the mechanism used for session tracking. This might be because of the Firefox add-on you use or a firewall running on... |
Forum: Java Nov 15th, 2009 |
| Replies: 16 Views: 1,005 Sadly, this simple a thing becomes pretty clunky to implement when it comes to Java. A sample implementation might be something like:
class YourClass {
private static final List<String>... |
Forum: Geeks' Lounge Nov 14th, 2009 |
| Replies: 26 Views: 2,110 After reading the FAQ, the two features which I found interesting were:
- No type hierarchy; this is a life safer given that the ridiculous amount of time OO programmers spend juggling with type... |
Forum: JSP Nov 8th, 2009 |
| Replies: 2 Views: 565 > Is there something similar to this that I can use for a Java Web App?
Yes, you can either use the <jsp:include> standard action or tag files... |
Forum: JSP Nov 8th, 2009 |
| Replies: 3 Views: 725 > The following program doesn't work in my Linux system's Mozilla firefox.
> Any help to fix this problem is appreciated
This isn't a browser problem. Make sure that your page which hosts EL... |
Forum: Java Oct 21st, 2009 |
| Replies: 6 Views: 386 > Thank you - my understanding of generic types is still somewhat limited.
When in doubt, always look at the standard library code which comes prepackaged with the JDK. For e.g. in this case,... |
Forum: JSP Oct 21st, 2009 |
| Replies: 1 Views: 479 Read Why Runtime.exec() won't work? (http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html?page=1)
If you are using Java 1.5 or more, look into ProcessBuilder ... |
Forum: JSP Oct 13th, 2009 |
| Replies: 5 Views: 641 > Does [0-9] need to be in quotes?
No, it needs to be placed inside forward slashes to be considered as a regular expression. Of course, if you place them inside quotes, you need to explicitly use... |
Forum: JavaScript / DHTML / AJAX Oct 8th, 2009 |
| Replies: 4 Views: 592 > is it impossible to do it without that active x?
AFAIK, yes, it's not possible. |
Forum: DaniWeb Community Feedback Oct 2nd, 2009 |
| Replies: 21 Views: 1,680 >Oh I see, you replaced the existing tags with spam.
Maybe you missed some of the important points of my previous post. My point being, if a member with zero posts can edit the tags for a given... |
Forum: Java Oct 2nd, 2009 |
| Replies: 2 Views: 342 JNI would be too low level; try something like SWIG (http://www.swig.org/)or JNA (https://jna.dev.java.net/). |
Forum: DaniWeb Community Feedback Sep 27th, 2009 |
| Replies: 17 Views: 1,405 > All these colorful appearance of daniweb makes me get the impression
> that this site is friendly and supports freedom of speech until one ...
> turkish flagged my post as bad
This site... |
Forum: Java Sep 21st, 2009 |
| Replies: 10 Views: 1,121 Your second file is missing the class imports. I don't see the declaration of your `Convert' enum class. Your naming conventions are still off.
These are pretty simple error messages to hunt down... |
Forum: Java Sep 21st, 2009 |
| Replies: 10 Views: 1,121 A few observations:
- Always perform resource cleanup in the `finally' block to be rest assured that the cleanup indeed is performed even if the code ends up throwing an exception.
- The way you... |
Forum: Java Sep 20th, 2009 |
| Replies: 10 Views: 1,121 >Thanks a lot guys for the help!
Good luck with the remaining exercises.
> I will flag this as solved when I get my account fixed.
Done and done. :-) |
Forum: Java Sep 20th, 2009 |
| Replies: 10 Views: 1,121 Read the contract of the substring method; substring(4, 6) == 2 characters.
Also get in the habit of using uppercase characters for enums i.e. `BIN' instead of `bin'. |
Forum: DaniWeb Community Feedback Sep 5th, 2009 |
| Replies: 74 Views: 5,040 I did see it when I first logged in, but trying after around half an hour made it go away. |
Forum: DaniWeb Community Feedback Aug 22nd, 2009 |
| Replies: 37 Views: 4,605 >I like the reputation system better
I personally feel that the reputation system is a complete fail and the point system introduced by StackOverflow is awesome. You get a vote-up if the answer is... |
Forum: Geeks' Lounge Aug 8th, 2009 |
| Replies: 6 Views: 657 >that some couple getting married
Agree; marriage is surely a crazy thing! :-) |
Forum: DaniWeb Community Feedback Aug 3rd, 2009 |
| Replies: 15 Views: 1,310 Thank you all; I really appreciate the trust Daniweb members have placed in me. Looking forward to a better Daniweb with your help and support. :-)
Oh and btw, the green color doesn't look that... |