Chii

3,417
reputation
226 views

Registered User

name Chii
member for 1 year
seen 6 hours ago
website
location AU
age
ask me if you want to know!
1d
comment Javascript variable type (byte).
you can use an integer to simulate - a bit costly in terms of memory, but for anything you need to do in javascript, it would probably suffice
2d
comment How might I go about using Java to configure a router?
you need to provide more information - too little to go on
2d
comment What are some famous website that was built in Django?
that hardly counts!
Dec
14
accepted Calling static functions from a thread in java?
Dec
14
comment Convert boolean[] to String and viceversa in java
if that is the case, it might be better just to perform a loop, and use BigDecimal (instead of doing bit shifting)
Dec
14
awarded  Mortarboard
Dec
14
accepted Convert boolean[] to String and viceversa in java
Dec
14
comment Do pointers in java actually exist?
javadude.com/articles/passbyvalue.htm in joschi's answer is a great article to read on this topic
Dec
14
revised Do pointers in java actually exist?
added 670 characters in body
Dec
14
answered Do pointers in java actually exist?
Dec
14
comment Convert boolean[] to String and viceversa in java
because this smelt like homework, i didnt provide the full solution - just half. have a little think - its very easy to convert a digit into an array of bools.(and yes, the size limit of a long is indeed a problem, but the question didnt spec the max size...)
Dec
14
awarded  Nice Answer
Dec
14
revised Calling static functions from a thread in java?
for good style...by request...
Dec
14
comment Calling static functions from a thread in java?
@carlos: of course...was just lazy to type more stuff =)
Dec
14
comment generating Variations without repetitions / Permutations in java
i was hoping not to use the r word, since it sometimes scares people starting out...
Dec
14
answered Convert boolean[] to String and viceversa in java
Dec
14
answered generating Variations without repetitions / Permutations in java
Dec
14
revised generating Variations without repetitions / Permutations in java
dont tag in title
Dec
14
comment How can I catch moment when someone kill java.exe process?
but can kill both at almost the same time programatically. I.e., there isn't a fool proof way, but in practise, almost always works.
Dec
14
answered Calling static functions from a thread in java?
Dec
14
answered Is there a standard in java to use _ [underscore] in front of variable or class name
Dec
12
comment Dynamically converting java object of Object class to a given class when class name is known
If you really need this sort of feature, consider another language - groovy is one that runs on the jvm but has the feature you want.
Dec
12
answered Dynamically converting java object of Object class to a given class when class name is known
Dec
3
comment Serve JSP stored in DB
why anyone want to do this is beyond me - what advantage does it bring over just having the jsp on disk? If you are making a content management system and want customizable UI, you can still do it on disk instead of storing the jsp file on DB and then recompiling it at runtime...
Nov
25
comment Creating object to get expected Json
perhaps you should try it?
Nov
25
comment Java Generics comparison
can you post more of the compile error - include the line number. Probably ok for this question, but generally, that is useful information when asking for help.
Nov
25
comment What can I do to make jar / classes smaller?
these suggestions are not all applicable to all situations - they are mainly for this competition called java4k where you create a game in java under 4k of jar. But you can cherry pick one, e.g., using a better compressor than the standard jar uses, etc.
Nov
24
answered What can I do to make jar / classes smaller?
Nov
23
awarded  Nice Answer
Nov
23
comment With Java reflection how to instantiate a new object, then call a method on it?
you can only do that if you knew at compile time, that instance is going to be a FooBar - which then means you wouldn't need to use reflection in the first place!
Nov
23
revised With Java reflection how to instantiate a new object, then call a method on it?
added 1 characters in body
Nov
23
comment Using g.render in a grails service
with great power comes great responsibility! becareful when doing things like this - make sure you know the reasoning behind rendering gsp in a service before doing it :)
Nov
23
comment using javascript find the height a div is going to take before it is rendered
what you could try is render it offscreen (i.e., out of the viewport), measure it, then either destroy that, then rerender the same thing back in the place you want (or move it to the place you want)?
Nov
23
revised using javascript find the height a div is going to take before it is rendered
edited title
Nov
23
comment Using final object in anonymous inner class results in null
theres very little code to go on - there could potentially have been shadowing that we cant see since not all source code is provided - what if you reduced it to the minimalist code (that compiles) and post it here?
Nov
19
comment Best web front-end for SVN?
best free option (tho if you can go commercial, fisheye beats this hands down).
Nov
19
answered How to display a different JSP view for different types of objects
Nov
19
revised Can Lucene return several search results from a single indexed file?
no need for disclosure in the question - just homework tag it. Nothing wrong with homework
Nov
19
comment How to develop a customized browser with java?
i would recommend you to take a look at the source code from GWT - especially the hosted mode browser (not the OOPHM one). It contains code for a browser written in java (with a dash of native code) that embeds the native browser from the OS in a java frame. However, from looking at what and how you are asking this question, it seems you dont have enough technical capability, so perhaps just using an existing browser is a better solution for you.
Nov
19
comment ArrayIndexOutOfBoundsException
you should post your stack trace, and work out where it happened. Then may be you can tell immediately where it went wrong. If not, try stepping through the code in debug.
Nov
17
accepted Constants and annotation
Nov
17
comment Can i do this in Java?
an explanation would be good lol!
Nov
16
comment problem with valueOf(), converting a char to Character in Java
can you post the exact error msg as displayed by the compiler? it tells you where, and often tells you the exact cause. I suspect you just had the wrong scope for one of your variables or methods - is valueOf() statically imported?
Nov
16
comment Assert that two java beans are equivalent
you might find this blog entry enlightening blogs.atlassian.com/developer/2009/…
Nov
16
comment Which is more efficient?
the string concat operator '+' needs to have strings on both sides - i m sure the compiler is compiling code that converts the char '.' into a string - which costs more, i m sure, than just hard coding the string "." in there. Plus at compile time, the "." would most likely be interned.
Nov
16
awarded  Enlightened
Nov
16
revised Java newbie question: static{}?
added 232 characters in body
Nov
16
comment Java newbie question: static{}?
@grundlefleck and henry: yes both you are correct.
Nov
16
accepted Java newbie question: static{}?
Nov
15
awarded  Nice Answer