Search Results

1
vote
10answers
583 views

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

I'm planning to write a simple J2SE application to aggregate information from multiple web sources. The most difficult part, I think, is extraction of meaningful information from web pages, …
3
votes
5answers
602 views

What is the proper way to store app’s conf data in Java?

Hello, colleagues, where do you store user-specific and machine-specific runtime configuration data for J2SE application? (For example, C:\Users …
0
votes
2answers
317 views

JTidy Node.findBody() — How to use?

Hello, I'm trying to do XHTML DOM parsing with JTidy, and it seems to be rather counterintuitive task. In particular, there's a method to parse HTML: Node Tidy.parse(Reader, W …
1
vote
1answer
3k views

JSTL forEach tag: problems with enumeration, and with understanding how it should work

Hello, I've experienced rather strange behavior of JSTL forEach tag. I have some bean called SessionBean: public class SessionBean { private Collection<MyObject&g …
4
votes
14answers
1k views

Do you write interactive console applications?

I believe people still write a lot of console applications, including interactive ones, especially small utilities and administrative interfaces. Mostly for sake of simplicity. Do you write …
5
votes
7answers
607 views

Is there a way to obtain names of method parameters in Java?

Hello, I'm writing small and very DRY framework, which heavily relies on metadata. I'd like to know if there is a way to obtain m …
2
votes
2answers
203 views

Is there a library that generates UIs based on metadata declarations like this>>?

Hello, Do you know about a library that allows us to generate UI by just stating that it should be generated? I think there must be a person who have implemented a mechanism allowing …
0
votes

JTidy Node.findBody() — How to use?

I found there's much simpler method to extract the body: tidy = new Tidy(); tidy.setXHTML(true); tidy.setPrintBodyOnly(true); And then use tidy on the Reader-W …
0
votes

What are the things Java got right?

The most important thing after GC is reflection. It isn't new, but sould be everywhere from now on. …
0
votes

Java for intermediate .NET Developer

Whatever your level is, JSF for Nonbelievers is the best introduction to JSP/JSF. …