User Javamann - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T22:39:15Zhttp://stackoverflow.com/feeds/user/10166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1710914/removing-access-to-system-out-in-java/1711180#17111801Answer by Javamann for Removing access to System.out in javaJavamann2009-11-10T21:05:52Z2009-11-10T21:05:52Z<p>Close the System.out and System.err streams.</p>
http://stackoverflow.com/questions/1682762/substitute-override-class-implementation-at-runtime-java/1684193#16841930Answer by Javamann for Substitute (override) class implementation at Runtime (Java)Javamann2009-11-05T22:45:40Z2009-11-05T22:45:40Z<p>I use JMX to undeploy and the redeploy classes.</p>
http://stackoverflow.com/questions/1683610/can-a-thread-observe-junk-values-in-an-object-due-to-memory-incoherency/1684141#16841410Answer by Javamann for Can a thread observe junk values in an object due to memory incoherency?Javamann2009-11-05T22:36:28Z2009-11-05T22:36:28Z<p>Doesn't marking a variable 'volatile' prevent threads from seeing 'dirty' values?</p>
http://stackoverflow.com/questions/1681449/what-do-you-monitor-with-jmx-in-your-production-jee-server/1684106#16841061Answer by Javamann for What do you monitor with JMX in your production JEE server?Javamann2009-11-05T22:30:46Z2009-11-05T22:30:46Z<p>A little OT but you can use JMX for quite a bit more. Currently I am using JMX to hot deploy / hot fix components. Dynamically add functionality to existing components (filter, etc.). JMX is good for communication between components on the same JVM. Every component I create is instrumented to use JMX. </p>
http://stackoverflow.com/questions/1489105/web-services-using-j2me-and-java-version-1-40Web Services using J2ME and Java Version 1.4Javamann2009-09-28T20:08:34Z2009-09-28T21:19:18Z
<p>Howdy,
We are trying to program an MFP (Multi-function-printer) to communicate to our backend using Web Services. We are sending large images so using MTOM is important. Since we are dealing with a very constrained environment I would rather not use Axis. Does anyone know of another smaller WS library that will work with JDK1.4, or would it be better to 'Roll our own'?</p>
<p>Thanks </p>
http://stackoverflow.com/questions/1314077/how-to-make-weblogic-use-all-the-processors-on-a-multi-processor-machine/1314655#13146550Answer by Javamann for How to make WebLogic use all the processors on a multi processor machineJavamann2009-08-21T23:38:26Z2009-08-21T23:38:26Z<p>Is your workflow single threaded? Which OS are you running?</p>
http://stackoverflow.com/questions/1307258/change-status-line-in-installanywhere0Change status line in InstallAnywhereJavamann2009-08-20T16:11:32Z2009-08-20T16:11:32Z
<p>Howdy,
During the installation of our product I have a Merge Module that might have to install .netFramework3.5, Windows Installer 4.5 and SQL Express 2008. This process take about 15 minutes. Is there a way to change what is being displayed on the InstallAnywhere 2009 install dialog when it is running a Merge Module?</p>
<p>Thanks</p>
<p>-Pete</p>
http://stackoverflow.com/questions/1249917/final-variable-manipulation-in-java/1249925#12499250Answer by Javamann for Final variable manipulation in JavaJavamann2009-08-08T21:17:42Z2009-08-08T21:17:42Z<p>You can still change a 'final' variable using Reflection.</p>
http://stackoverflow.com/questions/1212386/concurrent-and-blocking-queue-in-java/1213759#12137590Answer by Javamann for Concurrent and Blocking Queue in JavaJavamann2009-07-31T17:12:22Z2009-07-31T17:12:22Z<p>I use the ArrayBlockingQueue whenever I need to pass data from one thread to another. Using the put and take methods (which will block if full/empty). </p>
http://stackoverflow.com/questions/1007192/in-java-how-a-commons-digester-process-an-input-xml-file/1007686#10076860Answer by Javamann for IN java, how a commons-Digester process an input XML file?Javamann2009-06-17T15:15:30Z2009-06-17T15:15:30Z<p>They used it at my last gig and all I remember is that it was extremely slow. </p>
http://stackoverflow.com/questions/1002276/how-to-scale-up-in-java/1002735#10027350Answer by Javamann for How to scale up in JavaJavamann2009-06-16T16:58:59Z2009-06-16T16:58:59Z<p>I don't see a reason to use EJB in this situation. You have to ask yourself where is the bottleneck. My bet will be with the video processing. I would profile your application and see how many threads can be processing before they are spending more time waiting for their timeslice than they are processing. After a point adding more threads will not add more throughput. At that point you know what a machine will do and how many machines you will need to sustain a certain throughput. How you scale across machine is another question.</p>
http://stackoverflow.com/questions/1002471/log4j-xml-in-client-jars/1002693#10026930Answer by Javamann for log4j.xml in client jarsJavamann2009-06-16T16:49:37Z2009-06-16T16:49:37Z<p>I would add the configuration xml and load it up with instruction for the user showing different configuration and options. This will make it easier for either them or support to enable addition logging.</p>
http://stackoverflow.com/questions/978489/how-important-are-design-patterns-really/978527#97852733Answer by Javamann for How important are Design Patterns really?Javamann2009-06-10T22:49:41Z2009-06-10T22:49:41Z<p>We used design patterns in the 80's, we just didn't know they were design patterns.</p>
http://stackoverflow.com/questions/963492/in-log4j-does-checking-isdebugenabled-before-logging-improve-performance/965526#9655260Answer by Javamann for In log4j, does checking isDebugEnabled before logging improve performance?Javamann2009-06-08T15:35:34Z2009-06-08T15:35:34Z<p>If you use option 2 you are doing a Boolean check which is fast. In option one you are doing a method call (pushing stuff on the stack) and then doing a Boolean check which is still fast. The problem I see is consistency. If some of your debug and info statements are wrapped and some are not it is not a consistent code style. Plus someone later on could change the debug statement to include concatenate strings, which is still pretty fast. I found that when we wrapped out debug and info statement in a large application and profiled it we saved a couple of percentage points in performance. Not much, but enough to make it worth the work. I now have a couple of macros setup in IntelliJ to automatically generate wrapped debug and info statements for me.</p>
http://stackoverflow.com/questions/964543/java-threads/965411#9654111Answer by Javamann for Java ThreadsJavamann2009-06-08T15:19:18Z2009-06-08T15:19:18Z<p>Java Concurrency in Practice - Addison Wesley ISBN:0321349601
I used this book to learn about Executors. I has a bunch of good examples you can steal.</p>
http://stackoverflow.com/questions/953416/find-out-the-language-windows-was-installed-as2Find out the language windows was installed asJavamann2009-06-04T22:18:19Z2009-06-05T02:33:42Z
<p>I have a problem where the user has set their locale (German) which is different that the Language Windows was installed as (English). Is there a way to discover what language windows was installed to use vs. what locale the user has set?
I should note the issue is I am creating a Share and I set the permissions based on the Locale so if the User has set the Locale to German the permission for "Everyone" is "Jeder" but if the OS is setup for English this will fail since the is not an Id for "Jeder"</p>
<p>Thanks</p>
http://stackoverflow.com/questions/922441/improve-bufferedreader-speed/923546#9235461Answer by Javamann for Improve BufferedReader SpeedJavamann2009-05-28T22:34:44Z2009-05-28T22:34:44Z<p>Using NIO, Channels, byte buffers, and Memory Mapped files will give you the best performance. It's about as close to the hardware as you are going to get. I had a similar problem where I had to parse over 6 million delimited lines of text (265MB file) then move around the delimited columns in the line and then write it back out. Using NIO and 2002 hardware it took 33 seconds to do this. The trick is to leave the data as bytes. You have one thread reading the data to extract the line, another thread to manipulate the line, and a third thread to write it back out.</p>
http://stackoverflow.com/questions/917977/remote-hibernate-criteria0Remote Hibernate CriteriaJavamann2009-05-27T20:56:01Z2009-05-27T21:30:36Z
<p>I have multiple services which call on my database service, which uses Hibernate, and I would like the remote services to be able to create a query and then pass that to be processes. Ideally I would like to pass a Criteria Object but it looks like it needs a Session which they won't have access to. Is there a process similar to the Criteria Object I could use? </p>
http://stackoverflow.com/questions/911462/collection-alternative-concurrentmodificationexception/913035#9130350Answer by Javamann for Collection Alternative - ConcurrentModificationExceptionJavamann2009-05-26T22:15:44Z2009-05-26T22:15:44Z<p>CopyOnWriteArrayList will do what you want.</p>
http://stackoverflow.com/questions/912623/how-can-i-speed-up-java-datagramsocket-performance/913021#9130210Answer by Javamann for How can I speed up Java DatagramSocket performance?Javamann2009-05-26T22:11:04Z2009-05-26T22:11:04Z<p>Since you are not using a Real Time Java there is no way make sure you will always send a packet every 60ms. I would set up a timer thread that will do a 'notify' on two other waiting threads that actually send the packet. You could get by with only one thread to send but I am sort of anal about having a backup in case there is a problem.</p>
http://stackoverflow.com/questions/894710/is-it-good-to-catch-a-more-general-type-of-exception/895867#8958670Answer by Javamann for Is it good to catch a more general type of Exception?Javamann2009-05-21T23:57:26Z2009-05-21T23:57:26Z<p>It depends if a more specific Exception will aid in the trouble shooting. Sometimes, like with JMX, its good to just catch the parent exception to avoid a long list of possible child exception. At least Java 7 will allow us to have more that one exception per catch. That will clean up the code quite a bit.</p>
http://stackoverflow.com/questions/894829/java-opinion-preventing-exceptions-vs-catching-exceptions/895851#8958511Answer by Javamann for (Java) Opinion: Preventing Exceptions vs. Catching ExceptionsJavamann2009-05-21T23:53:55Z2009-05-21T23:53:55Z<p>I will check the input parameters at the beginning of a method and throw an IllegalArgumentException if they are outside what should be passed to the method. The idea being that it's a programming error and it should be fixed. Better now than when it's out in the field. If in the middle of a method I get an unexpected condition (null in a list, etc) I will log a fatal message and do a System.exit(2). Again this forces you to fix an issue vs. just logging it and moving on.</p>
http://stackoverflow.com/questions/893070/critically-efficient-server/894249#8942490Answer by Javamann for Critically efficient serverJavamann2009-05-21T18:01:41Z2009-05-21T18:01:41Z<p>One Thread for the receiving of instrument updates which will process the update and put it in a BlockingQueue.</p>
<p>One Thread to take the update from the BlockingQueue and hand it off to the process that handles that instrument, or set of instruments. This process will need to serialize the events to an instrument so the customer will not receive notices out-of-order. </p>
<p>This process (Thread) will need to iterated through the list of customers registered to receive notification and create a list of customers who should be notified based on their criteria. The process should then hand off the list to another process that will notify the customer of the change.</p>
<p>The notification process should iterate through the list and send each notification event to another process that handles how the customer wants to be notified (email, etc.).</p>
<p>One of the problems will be that with 100,000 customers synchronizing access to the list of customers and their criteria to be monitored.</p>
http://stackoverflow.com/questions/884894/network-shares-with-windows-2008-and-uac0Network Shares with WIndows 2008 and UACJavamann2009-05-19T20:38:20Z2009-05-19T20:38:20Z
<p>I am trying to create a network share during an install on Window Server 2008 and I have been running into UAC problems. It seems that even though I am running as administrator during the installation process the batch file run by the installer can not create the share. Is there a way to accomplish this? </p>
http://stackoverflow.com/questions/812233/getting-events-from-a-database/812803#8128036Answer by Javamann for Getting Events from a DatabaseJavamann2009-05-01T19:09:20Z2009-05-01T19:09:20Z<p>Using Oracle you can setup a Trigger on a table and then have the trigger send a JMS message. Oracle has two different JMS implementations. You can then have a process that will 'listen' for the message using the JDBC Driver. I have used this method to push changes out to my application vs. polling.
If you are using a Java database (H2) you have additional options. In my current application (SIEM) I have triggers in H2 that publish change events using JMX.</p>
http://stackoverflow.com/questions/810212/inter-jvm-communication4inter jvm communicationJavamann2009-05-01T04:40:14Z2009-05-01T06:18:09Z
<p>I am looking for an inter-process communication library in Java. I am looking to send small messages between JVMs and would like to do it using shared memory if I could.</p>
http://stackoverflow.com/questions/792807/how-to-improve-the-performance-of-client-server-architecture-application/794986#7949860Answer by Javamann for How to improve the performance of Client-Server Architecture Application?Javamann2009-04-27T19:41:55Z2009-04-27T19:41:55Z<p>RMI is a very expensive protocol. I would look at replacing it.</p>
http://stackoverflow.com/questions/794227/how-to-know-about-outofmemory-or-stackoverflow-errors-ahead-of-time/794974#7949740Answer by Javamann for How to know about OutOfMemory or StackOverflow errors ahead of timeJavamann2009-04-27T19:38:56Z2009-04-27T19:38:56Z<p>I don't know how to prevent those error conditions but if you add an unhandled exception handler to the thread at least you can log and maybe do some sort of recovery in another thread.</p>
http://stackoverflow.com/questions/725770/should-the-java-this-keyword-be-used-when-it-is-optional/726187#7261870Answer by Javamann for Should the Java "this" keyword be used when it is optional?Javamann2009-04-07T14:57:22Z2009-04-07T14:57:22Z<p>I find using 'this' as messy. I use m_ for and instance variable, s_ for a static variable and p_ for a parameter. I have found these make the code easier to follow. YMMV</p>
http://stackoverflow.com/questions/684605/hashing-function-used-in-java-language/686186#6861863Answer by Javamann for Hashing function used in Java LanguageJavamann2009-03-26T15:08:15Z2009-03-26T15:08:15Z<p>Just as a note, if you are going to override hashCode you should also override equals.</p>
http://stackoverflow.com/questions/1249917/final-variable-manipulation-in-java/1249925#1249925Comment by Javamann on Final variable manipulation in JavaJavamann2009-08-10T22:42:48Z2009-08-10T22:42:48ZActually, you can. Try it.http://stackoverflow.com/questions/1049737/are-tasks-parallelized-when-executed-via-an-executorcompletionserviceComment by Javamann on Are tasks parallelized when executed via an ExecutorCompletionService ?Javamann2009-06-26T15:28:47Z2009-06-26T15:28:47ZCould you post some code please?http://stackoverflow.com/questions/953416/find-out-the-language-windows-was-installed-as/954038#954038Comment by Javamann on Find out the language windows was installed asJavamann2009-06-05T05:14:23Z2009-06-05T05:14:23ZI am trying to set share permissions from InstallAnywhere and limited in options. Thanks for the pointer to the Windows API.http://stackoverflow.com/questions/953416/find-out-the-language-windows-was-installed-as/953436#953436Comment by Javamann on Find out the language windows was installed asJavamann2009-06-04T23:13:42Z2009-06-04T23:13:42ZNot exactly what I was looking for but it pointed me to where the answer was (after 40 google searches)http://stackoverflow.com/questions/953416/find-out-the-language-windows-was-installed-as/953453#953453Comment by Javamann on Find out the language windows was installed asJavamann2009-06-04T23:11:58Z2009-06-04T23:11:58ZBeing windows I am sure this is. http://stackoverflow.com/questions/953416/find-out-the-language-windows-was-installed-as/953436#953436Comment by Javamann on Find out the language windows was installed asJavamann2009-06-04T23:10:39Z2009-06-04T23:10:39ZI'm using InstallAnywhere which doesn't appear to have access to SystemLanguageId. I can just do the registry lookup call instead.http://stackoverflow.com/questions/953416/find-out-the-language-windows-was-installed-asComment by Javamann on Find out the language windows was installed asJavamann2009-06-04T23:09:25Z2009-06-04T23:09:25ZUpdate: The registry value to lookup is...
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Nls\Language\InstallLanguage
which returns a four digit language code.http://stackoverflow.com/questions/917977/remote-hibernate-criteria/917983#917983Comment by Javamann on Remote Hibernate CriteriaJavamann2009-05-27T23:14:56Z2009-05-27T23:14:56ZIt would be nice not to carry the Hibernate Jar around to the other services but the DetachedCriteria will work. Thankshttp://stackoverflow.com/questions/650825/spoofing-java-udp-packets/650869#650869Comment by Javamann on Spoofing Java UDP PacketsJavamann2009-05-27T22:26:25Z2009-05-27T22:26:25ZI was looking to run this in a Linux environment.http://stackoverflow.com/questions/917977/remote-hibernate-criteria/918107#918107Comment by Javamann on Remote Hibernate CriteriaJavamann2009-05-27T22:23:17Z2009-05-27T22:23:17ZYea, just read that too. I'll have to research it more.http://stackoverflow.com/questions/917977/remote-hibernate-criteria/918107#918107Comment by Javamann on Remote Hibernate CriteriaJavamann2009-05-27T21:54:45Z2009-05-27T21:54:45ZIf DetachedCriteria needs a session then it wouldn't work. I don't want the remote services to be that tightly coupled with the database service. I'm looking for a quick translation from what the services need to what Hibernate can accomplish.http://stackoverflow.com/questions/893070/critically-efficient-server/893288#893288Comment by Javamann on Critically efficient serverJavamann2009-05-21T19:12:40Z2009-05-21T19:12:40ZJMS could be used as a notification delivery method but I don't see how it applies to the lookup and criteria checking part of the system.http://stackoverflow.com/questions/893070/critically-efficient-server/894249#894249Comment by Javamann on Critically efficient serverJavamann2009-05-21T19:10:36Z2009-05-21T19:10:36ZIt's a Queue in Java that will block on the put method if the Queue is full and block on the take method when the Queue is empty. It's a good way to pass data between threads.http://stackoverflow.com/questions/884894/network-shares-with-windows-2008-and-uacComment by Javamann on Network Shares with WIndows 2008 and UACJavamann2009-05-19T21:49:26Z2009-05-19T21:49:26Zserverfault.com is in beta and I don't have accesshttp://stackoverflow.com/questions/812233/getting-events-from-a-database/812514#812514Comment by Javamann on Getting Events from a DatabaseJavamann2009-05-01T19:18:53Z2009-05-01T19:18:53ZThe problem is when the database is modified outside the client/server application. If you are using an ORM (Hibernate) you have to have a method to invalidate it's cache when the database is modified from an outside source.