Increasing classpath size in windows 2000

I have java on windows 2k and the classpath variable is more than what windows allows. as a result i have a limit on the amount of classpath i can insert. as a result i am not able to use many packages. please advise ..
i tried adding new environmental variable call max_classpath=4096, but it wont work. please advise ASAP.
thanks

thanks for the suggestions . i tried it .. but it wont work ..
finally i got something that worked .. its a little tedious but thats the only way out. i am just amazed that i havent found any one else with this problem.
here is the link with the information for working around that problem.
http://support.microsoft.com/default.aspx?scid=kb;en-us;Q72171

Similar Messages

  • How to increase the size of window in virtual tool box

    Hi,
    I have install rhel5 in oracle virtual box... but the size of window in which rhel5 runs is small and it is not covering the entire area of virtual toolbox....
    How can i increase the size of window to full size...
    Thanks and Regards...

    You need to install the "kernel-devel" and "kernel-headers" packages and then choose "Install Virtualbox Guest additions" from the Virtualbox menu, while logged in as root, in order to install the appropriate video driver that will allow you to resize the screen.

  • Increase font size in Windows 7 Photoshop Elements 11?

    I'd have thought (since this has been a problem since 9 and that HD displays are fairly common now) it would have been addressed. I still can't find a way to increase the font size in PE 11, though. Am I missing something? It seems the menu fonts have increased in size in proportion to what Windows font size I'm using, but all the other fonts in PE 11 are still too tiny to read meaning (unless I am missing something) the software is still unusable (unless I sacrifice resolution).

    Oh well, at least I only downloaded the trial I guess. I feel sorry for anyone who buys this expecting it to be fully compatible with HD monitors. Adobe are being lazy, I think, expecting people to lower the screen resolution. I just checked PC World and 8 out of 10 of the most popular monitors were full 1080 HD. I wonder how many will go to GIMP and not return?

  • Increasing partition size for windows

    can i increase the size of my windows partition with bootcamp?
    i installed windows at first just so that i can use some of the program and files that runs on windows. And i thought since i was going to format that partition in the FAT way then i can access files on OS X. But after the installation of windows i realize that i'd have to go to OS X and drag that file into the windows partition and then restart in windows to use them. And now it's too late (or not if you guys tell me that i can increase its size) because i've only gave the windows partition 5 GBs of capacity and after installation only 1.7 GBs is left free. What if i want to watch a movie i downloaded that is 2 GB in size? i can't possibly drag that into my windows partition after i downloaded it with OS X because it will be too big for it. What can i do now?

    I believe you have to go back to the original mac partition and start from there. Just like it was a new set up of boot camp.
    TTFN
    Doc

  • Increasing disk size in windows server 2003

    Hello,
    Am running a file server on windows server 2003. And i have 3 partitions as C, D and E. Where as D & E having 1 TB each. My company user documents are mapped to D as well as E. Now my D drive is running out of space and i have around 800 Gigs
    free space in E drive. I would like to move some of the free space from E drive to D. Am bit afraid to use diskpart command to extend the volume also not sure whether diskpart will help me.
    Can someone please guide me..
    Thanks in Advance
    NAZeeR

    Hi,
    "Extend Volume" only allows you to extend a drive into contiguous unallocated space (on the right). In this case you can only merge unallocated space to D drive. If you want to merge noncontiguous unallocated space to C drive, there are two solutions. Please
    refer to the article below:
    How to Merge Unallocated Space to C Drive without Losing Data?
    http://www.partition-magic.org/res/merge-unallocated-space-to-c-drive.html
    Regards,
    Mandy
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Increasing Screen Size in Windows 7 and PS CS6

    I have just updated my operating system to Windows 7.  When I open Photoshop CS6 the screen and icons look small.  Is there a way to enlarge the screen icons?

    Screen resolution is feature of Windows.
    Check this
    http://windows.microsoft.com/en-in/windows7/change-your-screen-resolution

  • CLASSPATH probs under Windows 2000

    Hi,
    JDK1.3 has worked reliably since i got it. No problems whatsoever. Recently i'm workingon a project which requires JDBC connectivity, and for that i needed a driver. I downloaded the mm.mysql driver and unpacked the jar file etc etc. I read in the manual that i need to set the classpath. So i did. Since then, nothing works.
    if i type 'set' in prompt i get a list of all environment variables. I've 'set CLASSPATH=c:\jdk1.3;c:\jdk1.3\lib;c:\jdbcdriver\org\gjt\mm\mysql'
    Files compile, but nothing runs. I get an exception 'NoClassFoundDefFoundError'. If i then reset the class path using 'set CLASSPATH=' (effectively deleteing the classpath variable) Then all works ok, except for the jdbc driver - which of course is not on the classpath.
    So i'm thinking that if there is no classpath all is ok, becasue the jdk installer sets everything up for me. And when i manually set the class path i must be ommiting some crucial directory.
    Pls help.
    Thanks,
    Alex

    The period includes the current working directory in the classpath - if it wasn't there java wouldn't look there for classes. Does everything work OK now?

  • Please Help me on CLASSPATH setting on windows 2000

    I downloaded "j2sdk1.4.2_04", installed it, and set the classpath to the following path, but i cannot still compile the following program MyApplet.java, because the compile cannot still find the
    netscape.javascript.JSObject., BUT I do found the netscape folder under
    C:\j2sdk1.4.2_04\jre\lib\netscape\javascript, there are three classes, named JSException.class, JSObject.class, and JSUtil.class. Please help me on this .... !!
    =================================================================================
    // MyApplet.java
    package netscape.javascript.JSObject;
    public class MyApplet extends javax.swing.JApplet
    private JSObject win = null;
    private JSObject cell = null;
    public Object callCellMethod(String name, Object[] params)
    return getCell().call(name, params);
    public Object callJavaScript(String name, Object[] params)
    return getJSwin().call(name, params);
    private JSObject getCell()
    if (cell == null)
    try
    JSObject doc = (JSObject)getJSwin().getMember("document");
    JSObject all = (JSObject)doc.getMember("all");
    cell = (JSObject)all.call("item", new Object[]{"DCellWeb1"});
    catch (Exception e)
    e.printStackTrace();
    return cell;
    private netscape.javascript.JSObject getJSwin()
    if (win == null)
    win = netscape.javascript.JSObject.getWindow(this);
    return win;
    =================================================================================
    D:\Tommy\Hack\Java+Ocx\java>echo %CLASSPATH%
    .;C:\j2sdk1.4.2_04\lib\tools.jar;C:\j2sdk1.4.2_04\lib\dt.jar;C:\j2sdk1.4.2_04\li
    b\htmlconverter.jar;C:\j2sdk1.4.2_04\jre\lib\plugin.jar;C:\j2sdk1.4.2_04\jre\lib
    \charsets.jar;C:\j2sdk1.4.2_04\jre\lib\jce.jar;C:\j2sdk1.4.2_04\jre\lib\jsse.jar
    ;C:\j2sdk1.4.2_04\jre\lib\sunrsasign.jar;C:\j2sdk1.4.2_04\jre\lib\rt.jar;C:\j2sd
    k1.4.2_04\jre\lib
    ==================================================================================
    D:\Tommy\Hack\Java+Ocx\java>javac MyApplet.java
    MyApplet.java:1: package netscape.javascript.JSObject clashes with class of same name
    package netscape.javascript.JSObject;
    ^
    MyApplet.java:5: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    private JSObject win = null;
    ^
    MyApplet.java:6: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    private JSObject cell = null;
    ^
    MyApplet.java:19: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    private JSObject getCell()
    ^
    MyApplet.java:25: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    JSObject doc = (JSObject)getJSwin().getMember("document");
    ^
    MyApplet.java:25: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    JSObject doc = (JSObject)getJSwin().getMember("document");
    ^
    MyApplet.java:26: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    JSObject all = (JSObject)doc.getMember("all");
    ^
    MyApplet.java:26: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    JSObject all = (JSObject)doc.getMember("all");
    ^
    MyApplet.java:27: cannot resolve symbol
    symbol : class JSObject
    location: class netscape.javascript.JSObject.MyApplet
    cell = (JSObject)all.call("item", new Object[]{"DCellWeb1"});
    ^
    9 errors
    D:\Tommy\Hack\Java+Ocx\java>
    ================================================================================

    D:\Tommy\Hack\Java+Ocx\java>echo %CLASSPATH%
    .;C:\j2sdk1.4.2_04\lib\tools.jar;C:\j2sdk1.4.2_04\lib\dt.jar;C:\j2sdk1.4.2_04\lib\htmlconverter.jar;C:\j2sdk1.4.2_04\jre\lib\plugin.jar;C:\j2sdk1.4.2_04\jre\lib\charsets.jar;C:\j2sdk1.4.2_04\jre\lib\jce.jar;C:\j2sdk1.4.2_04\jre\lib\jsse.jar;C:\j2sdk1.4.2_04\jre\lib\sunrsasign.jar;C:\j2sdk1.4.2_04\jre\lib\rt.jar;C:\j2sdk1.4.2_04\jre\lib
    Here is my CLASSPATH, and i already did it ........ But the compiler cannot still find the class ?!

  • Increasing partition size for Windows 7 Ultimate in a clean install

    I am running XP on a 32GB partition through bootcamp. I'm using OS 10.5.8 for my MacPro.
    I wanted to do a clean install of Windows 7 Ultimate (upgrade) in a larger partition than before, probably a new one.
    I have about 400GB of available space for this and wanted to know if it was possible before starting out. I ran out of space with 32GB for XP and figure a good 100GB partition would be safe with all the updates etc.
    Any help would be greatly appreciated!
    Message was edited by: ringoya_tokyo

    I believe you have to go back to the original mac partition and start from there. Just like it was a new set up of boot camp.
    TTFN
    Doc

  • Increasing brush-size crashes Win 8 - when HDMI cable is connected - Why?

    Photoshop Elements. Increasing brush-size crashes Windows 8 when HDMI cable connected to TV or data projector.  I'm using Asus N56V notebook with Nvidia 635M dedicated graphics card with latest driver.
    Any ideas please?
    Many thanks,
    Clive  (UK)

    Hi Brian,
    Here's an update:
    The nub of the problem has been determined by my computer expert as a conflict (as we suspected) between the graphics driver and screen resolution.  However the situation is far from dimple.  I'll be as brief as possible:
    No matter how we approach the settings for the Nvidia driver, when using HDMI, the 'workings' of the compuer automatically reset the driver to either the inbuilt Intel driver and if that's deliberately 'disabled' it reverts to the even more basic Windows 8 driver.  As neither card/driver is 'dedicated', the sharing that occurs between the native resolution of the notebook display and the external display (even if this is set to a compatible value)  the the computer crashes.  It remains OK if a single dsipaly (internal or external) is selected.  Dual display (which I must have) is the problem.  My computer expert is going to contact Asus about this. He even tried setting the global setting to Nvidia only and it still didn;'t succeed.
    I've since spoken with a colleague and he tells me that in the audio-visual community, this is a well known phenomenom with rexcent lapptops/notebooks no matter what to cost or spec - in so far as they ignor the 'dedicated graphics' when on HDMI in favour of the default (shared) driver and hence the problem. Apparently some notebooks are OK but one has to shop around and take pot luck.  What a state of affairs!
    The Asus notebook works OK using the VGA socket but let's face it, I bought this hi-spec computer for HDMI usage.
    This is the story to date.  It would appear that software is not the root cause.
    I will continue to pursue the matter and find a resolutuion (no pun intended - or perahps it was!)
    With all best wishes,
    Clive.

  • Setting Classpath on Windows 2000 box

    I have written a java application that is deployed to a Windows 2000 box. This application requires that a number of .jar files be included in the classpath, but it appears Windows 2000 imposes a maximum character length on the classpath variable because when I try to include all my .jar files in the classpath variable, the string is getting cut-off after a set number of characters. For example, I would like my classpath set to c:\classes\jar1.jar;c:\classes\jar2.jar;c:\classes\jar3.jar, but Windows 2000 only recognizes c:\classes\jar1.jar;c:\classes\jar2.jar;c:\cl. This causes my application to take java.lang.NoClassDefFoundExceptions since all the .jar files do not get included in the classpath.
    Does anybody know of a way around this issue? I would really like to avoid extracting the contents of my .jar files to a directory structure. Thanks for your help.

    I forget what the limits in Windows are, but they're a lot bigger than the size you need. I just set my classpath to that string in Windows 2000 with no problem. I believe Windows has a limit on the total size of the environment: maybe you have a whole lot of other environment variables set that you could dump. More likely, the problem has nothing to do with a Windows size limit, and you're getting cut off somewhere else.

  • Limitation on data file size for Oracle 8i on window 2000

    What is the size limitation for each Oracle data file ?
    Oracle 8i
    Window 2000 server (32-bit)

    Hi,
    You can get details from the Doc itself
    Refer : http://www.taom.ru/docs/oradoc.817/server.817/a76961/ch43.htm#11789 (Oracle8i Reference Release 2 (8.1.6) )
    Check 10g also : http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14237/limits002.htm (10g Release 2 (10.2) )
    - Pavan Kumar N

  • How can I increase the size of the bootcamp partition without having to delete or re-install windows? using a macbook pro (15-inch) 10.9.4.

    I'm using a macbook pro (late 2013 with mavericks-10.9.4 ). I installed windows using bootcamp but didn't estimate the storage I required correctly. So now I don't have enough storage in the bootcamp hard drive.
    How can I increase the Partition size between windows and mac without having to delete or re-install windows?
    Thanks,
    Advek

    Check out this explanation.

  • How to increase the size of acquisition window in C++ code

    Hi,
    I am using PCI 1405 to continuously acquire video images from vcr playback.
    I tried to make use of the OnGrab function provided in the sample files, and included this function into my C++ application, without using LabView.
    However I have difficulties increasing the size of the acquisition window (the maximum seems to be 640 by 480) using the api functions of the niimaq.h.
    Thanks a lot.
    Best regards
    I

    EDIT:  I noticed that you already posted the question in the appropriate forum..
    Message Edited by JoeLabView on 10-22-2007 07:56 AM

  • Increasing icon size in finder window

    In Snow Leopard I was able to increase the size of icons in any finder window by pinching out. I seem to have lost that ability after upgrading to Lion. This was a great feature, especailly for folders with photos in them. Does anyone know how to bring this back?

    Hi,
    thanks for the star too!
    I'm afraid I don't understand what didn't work... Mmmm...
    What I tested on my own computer (I also run 10.4.8) was that
    1/ I opened my home folder
    2/ my files are in "Icon view"
    3/ I went to the pull down menu at the top of the computer and chose View
    4/ I selected Show View Options (or Apple + J)
    5/ A window opened that allowed me to change the size of the icons in that window and also gave the possibility to change the size in all windows.
    I'm sorry if I was not clear before.
    Francine gave you the best option anyway. Thanks again!

Maybe you are looking for

  • SFC - Safe Mode

    Greetings. Got a PC with rather old Win XP SP3 installation. Out of blue, it keeps restarting on the system loading screen and now I can only get to Safe mode. I tried a bunch of things in order to make Win work normally again, but so far no luck. He

  • Not automatically downloading tv shows

    My itunes doesn't automatically download purchased tv shows and now for some reason it won't even let me get to the standard definition version so I can manually download my tv shows. Can anyone help?

  • What is Other and why is it 22G?

    An iPad had 10G of Other on it. I did a restore and now it has 22G of Other. What is Other and why is it there consuming drive space? Thanks.

  • Difficulties with my WiFi connection

    I have a satelite serie laptop and i'm having trouble with my wifi, i connect well to my routeur but often i get disconnected, when i'm running a game + full screen application in front of it => disconnection, when i'm connected by ethernet i do not

  • Find My Iphone stopped working on 2nd Gen IPOD

    Okay..until recently i was able to track my Ipod 2nd Gen on "find my iphone"..  I have I cloud set up on my macbook, Iphone 4, Ipod 3rd gen and Ipad 2 with no issues. I have 2 Ipods that are both 2nd gen that used to show up but now one doesn't even