The utils tag has no wiki summary.
0
votes
0answers
24 views
Python Virtualenv importing utils
Im running Python 2.7.4 on ubuntu 13.04 and try to set up a virtualenv. I had to install some modules with pip to run the code but Im not able to install utils which is used for parse_date.
This is ...
0
votes
1answer
215 views
File Utils Search Implementation
I would like to implement a search for files or folders matching a keyword.I am using the following code but the folders returned do not match the string.All the directories are returned.Any ideas ...
0
votes
0answers
117 views
java.util.NoSuchElementException on java Map
I just can't figure out what is the problem, why this code is throwing java.util.NoSuchElementException because there is hasNext before next method called
Map results = getResults();
...
0
votes
0answers
103 views
Create a base class for xmlpullparser utility in android
i have some problem with parsing XML using xmlpullparser API for android
Problem: i have a lot of duplication in android classes like Activity or some business class for xml parser but its a same!!! ...
0
votes
1answer
68 views
comparison of pdf's using C# [closed]
i have two pdf's.
Say one contain 2mm line and other contain the 5mm double line. Is it possible to compare these two and output say that both lines are different or there is a mis-match.
I am using ...
1
vote
1answer
168 views
Convert Hashmap with simple,indexed,nested, or combined type attributes as keys into a Java Bean
I am trying to convert a java bean to hashmap and then later convert the hashmap to java bean. For converting Java Object to hashmap this post helped me. Convert a JavaBean to key/value Map with ...
1
vote
4answers
428 views
Liferay - Share Utils class between 2 different portlets
I'm developing a Liferay application, consisting on 2 different portlets, an both have to make certain operations in common, so I decided to put that operations in static methods in an external Utils ...
0
votes
1answer
58 views
How to get a equivalent localized string of a number ?
I'm trying to convert numbers into a localized equivalent string (for an android app).
For example I would like to convert 25 into twenty five if the locale is US.
If the locale is FR I would like ...
3
votes
2answers
273 views
Difference between using GetterUtils and ParamUtils
For instance, when to use
GetterUtil.getBoolean()
and when
ParamUtil.getBoolean()?
Are both same, or is it expected to be used differently according to a parameter, a variable, etc? Can you ...
0
votes
1answer
174 views
Is there a way to get an xml document instead of HTML from an entity dump?
I Love Linqpad. Is there a way to get an xml document instead of HTML from an entity dump?
I wanted to use LinqPad.Util to create an XML doc instead of an HTML doc on the LinqToSql Changeset. I have ...
2
votes
1answer
89 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?
2
votes
2answers
1k 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
1k 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) {
...
0
votes
3answers
211 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 :
...
1
vote
0answers
342 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 ...
0
votes
2answers
336 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 ...
6
votes
2answers
623 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 ...
1
vote
2answers
333 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 ...
15
votes
3answers
8k 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 ...