Search Results

0
votes
2answers
2k views

How to use JVLC (Java bindings for VLC)?

I'm trying to use JVLC but I can't seem to get it work. I've downloaded the jar, I installed …
3
votes
1answer
960 views

Why I can’t parse a SimpleDateFormat with pattern “MMMMM dd” in Java?

I need to parse a string like "February 12, 1981" as a Date. I use SimpleDateFormat. But if I do …
0
votes

How can I get access to the HttpServletRequest object when using Java Web Services

Maybe the javax.ws.rs.core.Context annotation is for what you are looking for, instead of Resource? …
0
votes

Alternatives to static methods in Java

If you are passing a Class to findAll, why can't you pass a class to getSelectSQL in ModelBase? …
3
votes

How to round a number to n decimal places in Java

Assuming value is a double, you can do: (double)Math.round(value * 100000) / 100000 That's for 5 digits precision. The number of zeros in …
7
votes

Creating an instance of a nested Java class in Coldfusion.

Try with: <cfset PointClass = createObject("java", "java.awt.geom.Point2D$Double")> For nested classes, use $ …
7
votes

Implementation Patterns: a function returns a Date, but it is reasonable that a date won’t be found, return null or try to apply the NULL object pattern?

The null object pattern is not for what you are trying to do. That pattern is about creating an object with no functionality in it's implementation that you can pass to a given function that requir …
2
votes

Fast compiler error messages in Eclipse

Well, you can press F2 to display the popup that normally shows javadoc. If there's an error, it will display the error message with available quick fixes. So you can do Ctrl+., F2 repeated …
2
votes

Is there a way to implement algebraic types in Java?

You probably want an enum (Java >= 1.5). An enum type can have a set of fixed values. And it has all the goodies of a class: they can have fields and properties, and can make them implement an inte …
8
votes

String to Int in java - Likely bad data, need to avoid exceptions.

What's the problem with your approach? I don't think doing it that way will hurt your application's performance at all. That's the correct way to do it. Don't optimize prematurely. …