Networking Error
Comments Off
|
Networking Error
By default matlab number format precision is set to 5 digits only. Together with the E notation and a wide value range this may cause numbers to be unreadable. Use format long g for 15 digit precision
Apr
07
2009
Java Application Settings and System PropertiesPosted by Administrator in misc, tags: java / eclipseuse System.getProperty() and for loading and persisting Java Properties java.util.Properties
Dec
10
2008
Matlab and Java TipsPosted by Administrator in Uncategorized, tags: java/eclipse, matlab
Using Java in Matlab
Common pitfall when using Java Code in Matlab
Nov
18
2008
Java and Ant with Visual Studio CompilerPosted by Administrator in ich über die welt, it technologies, me live, misc, office, tags: c++/VS, flash, java/eclipseAlthough JAVA_HOME is pointing to the JDK, the problem with the ant task javac is that the javac command in tools.jar in %JDK%/lib is not found. Either copy tools.jar or do some registry change. CPP Compiletask in Ant involves following settings (XML Code): Visual Studio Environment Variables vs2005 c:\program files\microsoft visual studio 8\ First, go to vs2005 install path c:\program files\microsoft visual studio 8\vc, run vcvarsall.bat to set environment variable; then c:\program files\microsoft platform sdk\, run setenv command: eg: setenv /SRV32 /DEBUG. I use it to make the program work properly. Using C:\Programme\Microsoft Visual Studio 8\VC\vcvarsall.bat adds the following to the PATH Var JNI is a decent way to communicate between the WIn32 World and Javas Virtual Machine for self-written programs. However since DLLs with Java is mostly needed for interfacing third party Libraries a JNI dll wrapper is needed that requires an additional c compiling step. So to use https://jna.dev.java.net/ Change User Settings (Benutzerkonfiguration) Change default Save Places of all Apps Windows Useful commands rerusively rename folder and files (also works with files like *.c –> *.cpp) Recursively delete folder Martin Fowler Algorithmen und Datenstrukturen (Pomberger, Dobler) Design Patterns (Gamma et al.) UML Distilled (Martin Fowler) Head First Design Patterns (Head First) Einfügen von Smart Objects Mehrere Ebenen Nummrierung für Formatvorlagen in Word 2007
Aug
12
2008
Working with Date and Time in JavaPosted by Administrator in Uncategorized, tags: java/eclipseJODA is a very good API for working with DateTime paradigms in a much more comfortable way than the basic JDK functions do. See on Userfriendly for a good summary what JODA has to offer. One good thing about JODA is its well organized Date and Time structures. For example from a Object with Time 19:33 you can getMinutes() == 33 or toStandardMinutes.getMinutes() == 19* 60 + 33 without having the conversion work. This works for all Years, Weeks, Month, Hours, Days, Minutes, Seconds, Milliseconds even the exceptions like differing february days every 4 years. Formating Java Util Date (and TIme) |