Denny's profileJava DreamsBlogLists Tools Help

Blog


    November 29

    提高eclipse在windows下的性能

    在windows中,假如程序处理一定的状态下,会把memory放到paging里面。这样就降低了性能,但提高了memory的利用率。

    打开windows注册表, 找到 HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management\DisablePagingExecutive  值, 然后把这个值1。 这样应用程序就会一直使用物理内存了。

    详细请看:http://technet2.microsoft.com/WindowsServer/en/library/3d3b3c16-c901-46de-8485-166a819af3ad1033.mspx?mfr=true
    July 02

    Eclipse 3.2 release is out!

    期盼已久的3.2终于release了, 下面是一些新特性.

    http://download.eclipse.org/eclipse/downloads/drops/R-3.2-200606291905/new_noteworthy/eclipse-news.html
    October 19

    eclipse should enable XP visual styles if available (from comctl32.dll)

    i can confirm this. i copied the following file to $JAVA_HOME/bin as
    javaw.exe.manifest, and i magically got windows XP styles for all UI elements.

    this is good enough for me :)


    --snip---

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
     <assemblyIdentity
      version="1.0.0.0"
      processorArchitecture="X86"
      name="SWT.javaw"
      type="win32"/>
     <description>Standard Widget Toolkit</description>
     <dependency>
      <dependentAssembly>
       <assemblyIdentity
        type="win32"
        name="Microsoft.Windows.Common-Controls"
        version="6.0.0.0" processorArchitecture="X86"
        publicKeyToken="6595b64144ccf1df"
        language="*"/>
      </dependentAssembly>
     </dependency>
    </assembly>
     
    see