Search Results

0
votes

How do you grab a text from webpage (Java)?

If your "web sources" are regular websites using HTML (as opposed to structured XML format like RSS) I would suggest to take a look at HTML …
3
votes

Formatting Timestamps in Java

Dates are totally broken in Java. Sun screwed is twice (first with java.util.Date and second with java.util.Calendar). Use Joda Ti …
0
votes

Hibernate transaction problem

What about using Session.clear() and/or Session.evict()? …