Tagged Questions
The utils tag has no wiki summary.
13
votes
3answers
3k views
A good library to do URL manipulation in Java
I need to do a few very simple URL manipulations in Java. Like get the value for a parameter in the query, or update it, ... I was expecting to find a simple utility class doing that in the ...
4
votes
2answers
390 views
Couchdb - Block futon for readers users
I want to know how block the acess to futon (_utils) in couchdb for readers, allowing the access only for admins.
I need to do this why if a reader user acess the futon he can see the name of all my ...
2
votes
2answers
148 views
How to count duplicates in an array of strings?
How do I partition a String to extract all the words/terms that occur in it and count how many times each occurs?
For example let:
String q = "foo bar foo"
I want a DS {<foo,2>, <bar,1>}. ...
1
vote
5answers
141 views
Java String hashCode of null string
Only interesting, why method hashCode() in java.lang.String is not static?
And in case of null return e.g. -1 ?
Because frequently need do somethihg like:
String s;
.............
if (s==null) {
...
1
vote
0answers
91 views
cakeDC utils csvImport use?
I am looking to use the cakeDC CSVimport behaviour however I cannot work out how to set it up and there doesn't seem to be any documentation or instructions around. I am uploading a csv then I need to ...
1
vote
2answers
235 views
Deep Cloning in java - Cloning only objects that are being constructed(new)
Problem for me is to implement clone for an object. This object A has it's members object B, which were not created by A. I want to clone A such that only object's created during construction of A to ...
0
votes
1answer
10 views
pastebinit how to post pasties with login info?
Not so many manuals for this package.
I want to post pasties to pastebin.com under my username. so
pastebinit -u myuser -p mypassword file.py
doesn't work, it's not logging in... why?
0
votes
3answers
93 views
the method ceilingEntry(MyTime) is undefined for the type TreeMap<MyTime,Integer>
how are you doing?
I hope you can help me out with this little bugger.
I'm working on a GWT project.
I'm building a class that holds a TreeMap as a class member.
The definition of the member :
...
0
votes
2answers
129 views
Java String rewriting based on a pattern
Is there a library that provides string rewriting capabilities, using regex patterns? For example I want to rewrite each "$[a-zA-Z]+" into "<\img src='$old.png' />".
The kind of API I'm looking ...