User jassuncao - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T06:17:49Zhttp://stackoverflow.com/feeds/user/1009http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1144059/how-to-catch-gwt-horizontalsplitpanel-double-click-event0How to catch GWT HorizontalSplitPanel double click eventjassuncao2009-07-17T15:36:54Z2009-12-02T13:14:16Z
<p>I want to fully expand or restore a GWT HorizontalSplitPanel when the user double clicks in the panel thumb. </p>
<p>I was planning to extend the HorizonTalSplitPanel to add this behavior, but since it's a final class, it's not possible.</p>
<p>Does anybody knows a way to implement this behavior?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1637752/netty-vs-apache-mina/1640075#16400751Answer by jassuncao for Netty vs Apache MINAjassuncao2009-10-28T20:57:08Z2009-11-26T10:46:02Z<p>In Netty site you can find some performance <a href="http://www.jboss.org/netty/performance.html" rel="nofollow">reports</a>. As expected :-) they point out Netty as the framework with the best performance.</p>
<p>I never used Netty, but I already used MINA to implement a TCP protocol. The implementation of encoding and decoding was easy, but the implementation of the state machine was not so easy. MINA provides some classes to aid you when implementing the state machine, but I found them kind of hard to use. In the end we decided to ditch MINA and implement the protocol from scratch, and surprisingly we ended with a faster server.</p>
http://stackoverflow.com/questions/1775202/how-to-stream-large-files-using-jaxb-marshaller/1775450#1775450-3Answer by jassuncao for How to stream large Files using JAXB Marshaller?jassuncao2009-11-21T13:12:18Z2009-11-21T13:12:18Z<p>I don't know much of JAXB, so I can't help. But if you don't mind, I have a suggestion.</p>
<p>Writing XML is a lot easier than reading it, so an solution for your problem might be to use a more "low level" approach. Just write your own marshaller using one of the available open source libraries for XML. I think you can easily do what you want using <a href="http://www.dom4j.org" rel="nofollow">dom4j</a>.</p>
http://stackoverflow.com/questions/1775245/create-a-setup-frame-in-java/1775284#17752842Answer by jassuncao for Create a setup-frame in Javajassuncao2009-11-21T11:52:27Z2009-11-21T11:52:27Z<p>Create a JDialog and fill it the controls required to display/change options.
One of the JDialog constructors accepts a boolean argument that tells the dialog to be modal, meaning that the user will be unable to focus on the main form.</p>
<p>If you are using AWT, use Dialog instead of JDialog. </p>
http://stackoverflow.com/questions/1719935/communication-between-java-and-c/1757937#17579370Answer by jassuncao for communication between Java and C#jassuncao2009-11-18T18:06:00Z2009-11-18T18:06:00Z<p>Google's Protocol Buffers might be a option. It's very portable and quite fast.</p>
http://stackoverflow.com/questions/1728617/receiving-sms-sent-from-the-wtk-emulator-in-a-custom-application1Receiving SMS sent from the WTK emulator in a custom applicationjassuncao2009-11-13T11:17:28Z2009-11-13T12:11:23Z
<p>Hello all,
I'm using Sun WTK to run a midlet that needs to send and optionally receive SMS. WMA console can be used to send and receive messages to the midlet but I'd like to do the same thing using my own application. </p>
<p>I have done some sniffing, and noticed that the messages are sent by UDP from the WMA console to the emulator. </p>
<p>Does anyone knows how can I achieve my objective?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1728617/receiving-sms-sent-from-the-wtk-emulator-in-a-custom-application/1728855#17288551Answer by jassuncao for Receiving SMS sent from the WTK emulator in a custom applicationjassuncao2009-11-13T12:11:23Z2009-11-13T12:11:23Z<p>After digging inside the jars in WTK I was able to figure out how to send and receive SMS. I had to include the jars <code>kvem.jar</code> and <code>kenv.zip</code> in the application classpath. Tested under Linux.</p>
<pre><code>public static void main(String[] args) throws IOException, PhoneNumberNotAvailableException, InterruptedException {
System.setProperty("kvem.home", "/home/jassuncao/usr/WTK2.5.2");
WMAClient wmaClient = WMAClientFactory.newWMAClient(null, 4);
wmaClient.connect();
wmaClient.setMessageListener(new MessageListener() {
@Override
public void notifyIncomingMessage(WMAClient wmaclient) {
try {
System.out.println("Message received:"+wmaclient.receive());
} catch (IOException e) {
e.printStackTrace();
}
}
});
System.out.println("This number "+wmaClient.getPhoneNumber());
String[] receivers = wmaClient.getKnownReceivers();
for (String receiver : receivers) {
System.out.println("Sending SMS to "+receiver);
Message msg = new Message("Hello world!!");
msg.setFromAddress("sms://"+wmaClient.getPhoneNumber());
msg.setToAddress("sms://"+receiver);
//It seems the ports must be set AFTER the address to work
msg.setToPort(50000);
msg.setFromPort(50000);
wmaClient.send(msg);
}
System.in.read();
wmaClient.unregisterFromServer();
}
</code></pre>
http://stackoverflow.com/questions/859095/what-is-the-reason-for-the-rise-of-programmers-using-apple-machines17What is the reason for the rise of programmers using Apple machines?jassuncao2009-05-13T16:51:24Z2009-11-09T13:30:38Z
<p>I noticed a rise in the number of developers (mostly doing web development) using Apple machines.
Does Mac OS offer a better environment for programming or is it because of the hardware?
What are the reasons? </p>
http://stackoverflow.com/questions/1596100/how-can-i-catch-scroll-events-in-windows-forms-propertygrid1How can I catch scroll events in windows forms PropertyGridjassuncao2009-10-20T17:20:31Z2009-11-04T17:37:32Z
<p>I'm trying to synchronize the vertical scrollbars of two property grids. The idea is when a user scrolls one property grid the other property grid scrolls by the same amount.</p>
<p>My first approach was to handle the scroll event but it seems PropertyGrid doesn't generate this kind of event. I looked into the controls contained inside the PropertyGrid and there is a PropertyGridView, that I bet is the control with the scrollbar.</p>
<p>Does anybody know a workaround to achieve what I want?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1662375/xml-etree-elementtree-equivalent-in-java/1662458#16624581Answer by jassuncao for xml.etree.ElementTree equivalent in Javajassuncao2009-11-02T17:01:27Z2009-11-02T17:01:27Z<p>You might look into the following alternatives:</p>
<p><a href="http://www.dom4j.org/" rel="nofollow">dom4j</a></p>
<p><a href="http://www.xom.nu/" rel="nofollow">xom</a></p>
<p><a href="http://www.jdom.org/" rel="nofollow">jdom</a></p>
<p>Since I never used ElementTree I don't know wich one is the closest.
If you can use Groovy inside your project, it offers a set of classes that helps a lot when processing XML.</p>
http://stackoverflow.com/questions/1660679/relationship-between-gef-and-gmf/1661519#16615190Answer by jassuncao for Relationship between GEF and GMF?jassuncao2009-11-02T14:08:03Z2009-11-02T14:08:03Z<p>In your diagram isn't easy to understand the role of GMF. I don't work with GMF for some time, but if I remember, GMF provides code generation and a framework. This framework uses GEF and EMF and does most of the heavy work involved in a model editor. It probably can be seen as a new layer over GEF and EMF. Maybe you can change it to show these relations.</p>
<p>You may also consider showing the workflow involved in the development of a GMF editor</p>
http://stackoverflow.com/questions/1636710/how-to-render-good-quality-image-from-3d-scene-in-java-c/1637719#16377190Answer by jassuncao for How to render good quality image from 3d scene in java/c++ jassuncao2009-10-28T14:42:59Z2009-10-28T14:42:59Z<p>If you need an image with really good quality I think you should use a 3D engine with ray tracing.</p>
<p>Implementing a raytracer might not be a easy task, so my recommendation is to use an existing one, like for example <a href="http://www.povray.org/" rel="nofollow">POV-Ray</a>. I think it's possible to embed it in other applications. Raytracing stills takes some time, so the rendering will not be in real time.</p>
<p>In Java you can use Java3D but you will need some work. </p>
http://stackoverflow.com/questions/1636520/how-to-use-ant-to-check-for-tags-todo-etc-in-java-source/1636579#16365796Answer by jassuncao for How to use ant to check for tags (TODO: etc) in java sourcejassuncao2009-10-28T11:07:40Z2009-10-28T11:07:40Z<p>Maybe you can use <a href="http://checkstyle.sourceforge.net" rel="nofollow">Checkstyle</a>.
I think there is a check for TODO comments and checkstyle can be run as an Ant task so you might achieve what you want.</p>
http://stackoverflow.com/questions/1632365/get-battery-level-in-java/1632976#16329760Answer by jassuncao for Get battery level in Javajassuncao2009-10-27T19:02:46Z2009-10-27T19:02:46Z<p>I think you have two options. </p>
<p>One is to use JNI to invoke native code to get the battery level. </p>
<p>The other is to invoke the application <code>pmset</code> using <code>System.exec</code> in java and parse the output. I think the arguments to retrieve the battery level is <code>pmset -g ps</code> but you better check the man page</p>
http://stackoverflow.com/questions/1625553/how-does-vlc-media-player-implement-http-streaming/1630335#16303350Answer by jassuncao for How does VLC Media player implement HTTP Streaming?jassuncao2009-10-27T11:58:58Z2009-10-27T11:58:58Z<p>Java Media Framework (<a href="http://java.sun.com/javase/technologies/desktop/media/jmf/" rel="nofollow">link</a>) provides video streaming. You can implement not only a client but also the server using this API.</p>
<p>If I remember correctly the SDK includes some examples that might help.</p>
http://stackoverflow.com/questions/1629819/how-to-configure-hibernate-with-eclipse-galileo/1630298#16302980Answer by jassuncao for How to Configure Hibernate with Eclipse Galileojassuncao2009-10-27T11:49:59Z2009-10-27T11:49:59Z<p>To use hibernate annotations in Eclipse I just add a reference to the required jar (hibernate-annotations.jar).</p>
<p>You will also need the hibernate jar and the ejb3 jar (ejb3-persistence.jar)</p>
http://stackoverflow.com/questions/1629961/how-to-limit-a-jtextarea-to-only-accept-a-legal-set-of-characters/1630264#16302640Answer by jassuncao for How to limit a JTextArea to only accept a legal set of characters?jassuncao2009-10-27T11:41:47Z2009-10-27T11:41:47Z<p>You can assign a filter to JTextArea document.
Just override the method insertString in the class DocumentFilter to ignore the characters</p>
http://stackoverflow.com/questions/1473014/keeping-distributed-databases-synchronized-in-a-unstable-network2Keeping distributed databases synchronized in a unstable networkjassuncao2009-09-24T17:12:28Z2009-10-20T17:07:52Z
<p>I'm facing the following challenge:</p>
<p>I have a bunch of databases in different geographical locations where the network may fail a lot (I'm using cellular network). I need to keep all the databases synchronized but there is no need to be in real time. I'm using Java but I have the freedom to choose any free database.</p>
<p>Any suggestions on how I can achieve this.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1542713/how-msmq-will-work/1542913#15429130Answer by jassuncao for How MSMQ will work?jassuncao2009-10-09T10:00:36Z2009-10-09T10:00:36Z<p>MSMQ is a product that is most of the time used to achieve reliable messaging between applications running in different machines. It can also be used between application running in the same machine but is less common, but the objective is the same. Some application puts a message in a queue and sometime later another application fetches the message.</p>
<p>I don't know exactly what you want to achieve, but probably you can manage using the Queue class and some threads and timers. Maybe it's overkill, but the open source schedule Quartz might also help.</p>
http://stackoverflow.com/questions/1378798/very-slow-read-from-dvd-in-java-and-net1Very slow read from DVD in Java and .Netjassuncao2009-09-04T11:54:21Z2009-09-04T13:14:22Z
<p>I noticed in two applications to generate hashes of files, one written in Java and the other in C#, that the performance is horrible when reading from a DVD. I'm using Windows XP SP3. I noticed from the noise, that the drive keeps spinning down after reading a bunch of blocks, causing pauses of a couple of seconds between reads.</p>
<p>The strange thing, is that this doesn't happen when I use explorer to copy the files to my hard drive or when using md5sum (a utility written in C). Also. When running in Linux using the same hardware, the Java application works fine.</p>
<pre><code>private static final byte[] m_buf = new byte[1048576*3];
...
//Using a BufferedInputStream makes no difference
InputStream in = new FileInputStream(file);
while((last_read = in.read(m_buf)) != -1){
update_hash(m_buf, 0, last_read);
}
in.close();
</code></pre>
<p>Any hints?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1378798/very-slow-read-from-dvd-in-java-and-net/1379037#13790370Answer by jassuncao for Very slow read from DVD in Java and .Netjassuncao2009-09-04T12:50:42Z2009-09-04T12:50:42Z<p>After reducing the size of the buffer to 1024 bytes the problem disappeared.
Don't know the exact explanation, but probably because there are more frequent reads the DVD driver doesn't spin down the drive.</p>
<p>Thanks for the comments </p>
http://stackoverflow.com/questions/1153816/trouble-using-gwt-scrollpanel1Trouble using GWT ScrollPaneljassuncao2009-07-20T14:10:20Z2009-07-22T10:14:29Z
<p>Hello all.</p>
<p>I'm trying to show a large image inside of a ScrollPanel. The ScrollPanel is one of the tabs of a TabPanel. All this is inside of a VerticalSplitPanel.</p>
<p>I expected to have the ScrollPanel doing the scrolling but instead is the VerticalSplitPanel that has the scrollbars.</p>
<p>Can anybody help me achieve the desired behavior.</p>
<p>Thanks.</p>
<p><img src="http://pwp.net.ipl.pt/deetc.isel/jassuncao/Diagram1.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1103808/modular-development/1103906#11039060Answer by jassuncao for modular development jassuncao2009-07-09T13:29:52Z2009-07-09T13:29:52Z<p>I don't think the problem is lack of support in OSGI for JPA, but lack of support in JPA implementations for the OSGI classloader. Anyway I digress. </p>
<p>You may have success using OpenJPA with OSGI. The latest versions are already packed as OSGI bundles. I leave also this <a href="http://blog.luminis.nl/roller/luminis/entry/jpa%5Fpersistence%5Fin%5Fosgi%5Fwith" rel="nofollow">link</a> that explains how to get OpenJPA working in Apache Felix.</p>
http://stackoverflow.com/questions/527766/what-is-the-equivalent-of-java-wildcards-in-c-generics3What is the equivalent of java wildcards in C# genericsjassuncao2009-02-09T11:19:40Z2009-07-07T14:39:46Z
<p>I'm developing an application where I the need to invoke a method of a generic class and I don't care about the instances actual type. Something like the following Java code:</p>
<pre><code>public class Item<T>{
private T item;
public doSomething(){...}
}
...
public void processItems(Item<?>[] items){
for(Item<?> item : items)
item.doSomething();
}
</code></pre>
<p>At the time I was on a hurry, so I solved my problem by defining a interface with the methods I needed to invoke and made the generic class implement it.</p>
<pre><code>public interface IItem
{
void doSomething();
}
public class Item<T> : IItem {
private T item;
public void doSomething(){...}
}
...
public void processItems(IItem[] items)
{
foreach(IItem item in items)
item.doSomething();
}
</code></pre>
<p>This workaround works fine, but I'd like to know what is the correct way to achieve the same behavior.<br />
Thanks.</p>
<p><strong>EDIT:</strong>
I forgot to refer that the caller of <strong>processItems</strong> doesn't know the actual types. Actually the idea was that the array passed as argument to processItems could contain intermixed types. Since its not possible to have such an array in .Net, using a non generic base class or interface seems to be the only way.</p>
http://stackoverflow.com/questions/995403/how-can-i-define-a-dependency-on-sql-server-in-a-windows-service-that-works-with0How can I define a dependency on SQL Server in a windows service that works with SQL Server Expressjassuncao2009-06-15T10:28:53Z2009-06-15T13:34:10Z
<p>I'm using the following code to define a service dependency on SQL Server:</p>
<pre><code>serviceInstaller.StartType = ServiceStartMode.Automatic;
serviceInstaller.ServicesDependedOn = new[] { "MSSQLSERVER" };
Installers.Add(serviceInstaller);
Installers.Add(processInstaller);
</code></pre>
<p>This works in two machines, one with SQL Server and the other with SQL Server Express. But when I installed the service in the clients server, it failed because the SQL Server Express service name was different (SQLSERVEREXPRESS).
Is there any way of defining a dependency that works in both situations?
Thanks. </p>
http://stackoverflow.com/questions/283477/how-do-i-assemble-a-console-application-with-maven-without-unpacking-all-dependen/283564#2835646Answer by jassuncao for How do I assemble a console application with Maven without unpacking all dependencies?jassuncao2008-11-12T10:43:10Z2009-06-03T16:40:23Z<p>I use the <a href="http://mojo.codehaus.org/appassembler/appassembler-maven-plugin/" rel="nofollow">AppAssembler plugin</a> to get something similar. Example:</p>
<pre><code>...
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
<configuration>
<programs>
<program>
<mainClass>com.acme.MainClass</mainClass>
<name>app</name>
</program>
</programs>
</configuration>
</plugin>
</plugins>
</code></pre>
<p></p>
http://stackoverflow.com/questions/904050/how-to-run-an-osgi-framework-within-usual-java-code/907289#9072892Answer by jassuncao for How to run an OSGi framework within usual java-code?jassuncao2009-05-25T16:17:49Z2009-05-25T16:17:49Z<p>See the project <a href="http://code.google.com/p/equinox-headless-service/" rel="nofollow">equinox-headless-service</a>. It has code to launch equinox.</p>
http://stackoverflow.com/questions/820213/new-to-c-should-i-use-visual-studio/820332#8203321Answer by jassuncao for New to C++: should I use Visual Studio?jassuncao2009-05-04T14:22:44Z2009-05-04T14:22:44Z<p>I remember a few years ago having some troubles with VS. Actually the problem was with the C++ compiler, because they didn't implemented some features of the language, or at least they didn't implemented in a standard way. </p>
<p>We switched to Eclipse CDT because it was relatively easy to use other compilers, supported custom makefiles, and multiple targets.</p>
<p>But if you plan to develop for Win32, VS it's probably the safest choice.</p>
http://stackoverflow.com/questions/802410/why-does-eclipse-cdt-say-syntax-error-but-compilation-no-problem/802476#8024764Answer by jassuncao for Why does Eclipse CDT say: 'syntax error', but compilation no problemjassuncao2009-04-29T13:56:52Z2009-04-29T14:51:27Z<p>It seems the CDT parser doesn't like the portion offsetof(struct ...).
If you declare collect_conn using a typedef the error goes away. At least for me, the following code works:</p>
<pre><code>typedef struct {
struct runicast_conn runicast_conn;
struct announcement announcement;
const struct collect_callbacks *cb;
struct ctimer t;
uint16_t rtmetric;
uint8_t forwarding;
uint8_t seqno;
} collect_conn;
...
struct collect_conn *tc = (struct collect_conn *)
((char *)c - offsetof(collect_conn, runicast_conn));
</code></pre>
<p>If you can't change the original declaration do something like this:</p>
<pre><code>typedef struct collect_conn collect_conn_t;
</code></pre>
http://stackoverflow.com/questions/798683/how-to-use-a-proxy-with-google-web-toolkit/798914#7989140Answer by jassuncao for How to use a proxy with Google Web Toolkitjassuncao2009-04-28T16:59:48Z2009-04-28T16:59:48Z<p>Why not perform the network calls in server side? That way you are not restricted to cross domain restrictions.</p>
http://stackoverflow.com/questions/1144059/how-to-catch-gwt-horizontalsplitpanel-double-click-event/1832824#1832824Comment by jassuncao on How to catch GWT HorizontalSplitPanel double click eventjassuncao2009-12-02T18:31:51Z2009-12-02T18:31:51ZVery nice articlehttp://stackoverflow.com/questions/1662185/do-linux-jvms-actually-implement-thread-priorities/1662288#1662288Comment by jassuncao on Do Linux JVMs actually implement Thread priorities?jassuncao2009-11-02T17:17:43Z2009-11-02T17:17:43ZI don't think CLR uses green threads. I'm almost sure thread scheduling is done by the OS.
http://stackoverflow.com/questions/1639034/direct-memory-access-to-the-network-card-in-java/1639351#1639351Comment by jassuncao on Direct memory access to the network card in javajassuncao2009-10-28T20:33:34Z2009-10-28T20:33:34ZThe sandbox model only applies to applets. A Java application can potentially cause as many damage as any other. For example deleting your system files. But it's true, unless you use JNI, you don't have direct access to the hardwarehttp://stackoverflow.com/questions/859095/what-is-the-reason-for-the-rise-of-programmers-using-apple-machinesComment by jassuncao on What is the reason for the rise of programmers using Apple machines?jassuncao2009-10-28T20:23:27Z2009-10-28T20:23:27ZI don' have scientific data to prove this apparent rise. But I noticed this, from screenshots in the web and in books, in my workplace and conferences.http://stackoverflow.com/questions/1596100/how-can-i-catch-scroll-events-in-windows-forms-propertygrid/1597233#1597233Comment by jassuncao on How can I catch scroll events in windows forms PropertyGridjassuncao2009-10-21T09:31:58Z2009-10-21T09:31:58ZUsing this code I was able to synchronize the two scrollbars. When I move one the other moves accordingly. The trouble is that the contents doesn't scroll with the scrollbar. I guess is better to abandon my original idea.http://stackoverflow.com/questions/1473014/keeping-distributed-databases-synchronized-in-a-unstable-network/1595893#1595893Comment by jassuncao on Keeping distributed databases synchronized in a unstable networkjassuncao2009-10-20T17:24:13Z2009-10-20T17:24:13ZGreat collection of information. Thank you.http://stackoverflow.com/questions/1542713/how-msmq-will-work/1542913#1542913Comment by jassuncao on How MSMQ will work?jassuncao2009-10-09T11:20:22Z2009-10-09T11:20:22ZI'm sorry, but I still don't understand your objective. My English skills are not the best :-).
I will assume that you want to access those urls at different time intervals.
Using Quartz scheduler I would create different jobs with different timer intervals and assign to each job a specific an URL. The code for the jobs would do something with the URL.
http://stackoverflow.com/questions/1496824/maven-circular-dependencyComment by jassuncao on Maven circular dependency?jassuncao2009-09-30T09:05:10Z2009-09-30T09:05:10ZA little suggestion to cleanup your pom and make your life easy in the future.
If you really need plugin management, move it to the parent pom. Move also the repositories and plugin repositories. This way if you need to change a plugin version for example, you only need to change it in one place.http://stackoverflow.com/questions/1473014/keeping-distributed-databases-synchronized-in-a-unstable-network/1473164#1473164Comment by jassuncao on Keeping distributed databases synchronized in a unstable networkjassuncao2009-09-24T18:46:35Z2009-09-24T18:46:35ZThe Yahoo paper is very interesting.
The idea of developing my own solution was already on my mind. I'd love to have something like GIT for databaseshttp://stackoverflow.com/questions/1144059/how-to-catch-gwt-horizontalsplitpanel-double-click-event/1145124#1145124Comment by jassuncao on How to catch GWT HorizontalSplitPanel double click eventjassuncao2009-07-19T12:05:53Z2009-07-19T12:05:53ZThis doesn't work because HorizontalSplitPanel is a final classhttp://stackoverflow.com/questions/657792/is-there-an-easy-way-to-calculate-and-format-time-date-intervals-in-java/657801#657801Comment by jassuncao on Is there an easy way to Calculate and format time/date intervals in java?jassuncao2009-04-20T08:27:50Z2009-04-20T08:27:50ZEverybody knows the date time classes provided by the JDK lack a lot of features. Sun recognizes this. I think the developer of Joda Time is now working for sun. Hopefully, the next version of Java will have an improved time api.http://stackoverflow.com/questions/692592/call-using-gsm-modem/692814#692814Comment by jassuncao on Call Using GSM modemjassuncao2009-03-30T11:11:23Z2009-03-30T11:11:23ZI searched in google and found multiples products with the same designation. Can you provide a link to the product?http://stackoverflow.com/questions/672696/lazily-instantiate-a-final-field/673215#673215Comment by jassuncao on Lazily instantiate a final fieldjassuncao2009-03-23T14:49:33Z2009-03-23T14:49:33ZYou should mark conn as volatile. Double checked locking is broken without it, and even with volatile it's broken for java 1.4 and earlierhttp://stackoverflow.com/questions/491541/how-can-i-detect-the-java-runtime-installed-on-a-client-from-an-asp-net-website/491558#491558Comment by jassuncao on How can I detect the Java runtime installed on a client from an ASP .NET website?jassuncao2009-02-12T11:18:08Z2009-02-12T11:18:08ZAnd it seems to be platform independent since it also worked in FF in Linuxhttp://stackoverflow.com/questions/81392/java-why-do-i-receive-the-error-message-type-mismatch-cannot-convert-int-to-by/81394#81394Comment by jassuncao on Java: why do I receive the error message "Type mismatch: cannot convert int to byte"jassuncao2008-09-17T10:39:50Z2008-09-17T10:39:50ZI guess is due to performance. In some CPUs, it might be more expensive to use operands smaller than the cpu registers. Probably its even used a 32bit int to store byte and short, to keep them aligned in memory.