Tagged Questions
The util tag has no wiki summary.
8
votes
6answers
6k views
When to use Enum or Collection in Java
Under what circumstances is an enum more appropriate than, for example, a Collection that guarantees unique elements (an implementer of java.util.Set, I guess...)?
(This is kind of a follow up from ...
6
votes
5answers
202 views
'app --help' should go to stdout or stderr?
I think stdout, so you can easily grep, what do you think?
5
votes
2answers
153 views
List of useful environment settings in Java
I've been wondering a long time if there was a comprehensive list of (probably static) methods/fields that store runtime information for the JVM. An incomplete list of examples:
System.out / ...
5
votes
3answers
137 views
Cons of static utility classes in java?
What are the cons of creating static utility classes? The more I've made, the more I find them extremely useful. I understand that they lack object oriented design, but I still love them probably more ...
5
votes
3answers
256 views
Where to find an overview of backed Collection methods/classes
I am trying to find an overview of all methods in the java.util package returning backed Collections (and Maps). The only ones easy to find are the synchronizedXX and immutableXX. But there are others ...
4
votes
1answer
88 views
Question about java.util.Calendar
I'm trying to understand the behavior with the following code.
My local time zone is UTC -7 (Arizona).
Calendar cal = Calendar.getInstance();
cal.set(Calendar.MINUTE,40);
...
2
votes
1answer
39 views
Why is the TimeZone.getTimeZone(“MST”) method is different from getTimeZone(“US/Mountain”)?
TimeZone.getTimeZone("US/Mountain") and TimeZone.getTimeZone("MST") are returning different results. Does MST in this java class not represent "Mountain Standard Time"?
2
votes
2answers
574 views
getISOCountries() method displays only two letters of contry name. Is Get full name of country using this method possible?
I used following code, but it displays only 2 digit of ISO country name. For example, for "INDIA", it only display "IN". Can I show full name as "INDIA" ?
String[] loc= Locale.getISOCountries();
...
1
vote
1answer
44 views
what are (and the difference between) factories, service and util classes? Are there any more concepts in a software project? [closed]
I am trying to get my head around the concepts of a typical software project, but I cannot find a decent article concerning this.
What are factories?
What are services?
What are util classes?
And ...
1
vote
1answer
65 views
Creating a Util class
I have created a currency fomatter class. I want this to be a util class and could be used by other applications.
Now I am just taking a string, instead I want it to be set by the application ...
1
vote
4answers
144 views
Appending TimeStamp in log file name of Java util logger
Currently I am using using Java util for logging logs into the file which can be configured from java.util.logging.FileHandler.pattern. I want to append a timestamp in the log file name. I also have ...
0
votes
0answers
72 views
grails util class referencing grails models ID doesn't work with compilation
I want to use a Util-Class in grails-app/utils/packagename/TestUtil.java
Inside this class I use a Grails Model like:
Resource res = new Resource();
if (res.getId() == paramID){ //res.id doesn't ...
0
votes
1answer
41 views
Hierarchy of utility classes behind a facade?
What practises exist when it comes to organizing utility classes where some could be subset of others?
As an example, you could have a FileUtil class with methods related to Files and a subset of ...
0
votes
2answers
114 views
How to organize and share utility libraries/classes (not code snippets)
I have many many adhoc and general utility classes that I have written over the years in various projects.
Some of them are wrappers/adapters to other libraries.
For Java its a challenge to share ...
0
votes
2answers
433 views
How to call sql procedure from an html button?
Hey guys, my doubt is pretty simple to understand.
I have a sql procedure that generates a util file as its output depending on the input parameters that are passed to it.
I have to pass these ...