Uninstalling Java (TM) Platform, Micro Edition Software Development Kit 3.0

Hi,
I have installed Java (TM) Platform, Micro Edition Software Development Kit 3.0 EA, and now I want to remove it, however, when running the uninstaller I get a message about the "Java ME SDK is running. Please close Java ME SDK window and try again."
There is no other Java ME SDK running, I have even tried this in Safe Mode, but with the same error message! My guess the problem is that the installer think itself is the Java ME SDK.
Do anyone know how to solve this and uninstall the ME SDK?
I'm running Vista business, 64-bit if that helps.
BR Psy

It's strange that there is not any related processes. Have you tried to remove sdk related folders from your home?
Looks like it's platform dependency issue. Actually 64-bit is not declared as supported by SDK.
http://java.sun.com/javame/downloads/sdk30ea.jsp#install:
Required Software
* Microsoft Windows XP or Vista 32-bit with recent service packs
* Java SE Development Kit - JDK 1.6 or higher
* Apple QuickTime player (required to play AMR media on Windows)
I can suggest you to remove it manually from installation dir, <your_user_home>\javame-sdk, <your_user_home>\.javame-sdk and clean up registry.

Similar Messages

  • Bad installation of Java Platform Micro Edition SDK 3.0 - Can't uninstall

    Hi,
    I tried installing the Java Platform Micro Edition SDK 3.0 tonight and it didn't work (I guess the thing doesn't like it when you're running Win7 x64 with the latest JDK for some reason...). Anyways, it installed fine but on first run it got stuck at the nag screen with IOExceptions, etc. and never finished starting. So I decided to uninstall and guess what? I can't uninstall it because it tells me it can't run the uninstaller program since it can't load a win32 dll on a 64-bit machine...
    So I resorted to deleting the folder and running a registry cleaner :/ However, so I can properly clean things up, I'd like to know where else the SDK put files or dlls and which ones.
    Thanks for your help!
    -LordPhoenix

    I'm having exact the same problem, but I'm using Vista x64.
    I tried to uninstall x64 version of the Java SE SDK and installed the x86 version instead, but it didn't help :/
    So could please anyone post a solution to this.
    EDIT: actually I at least managed to uninstall it using the SE SDK x86.
    But still, is there any way to use Java ME SDK on Vista x64?
    Edited by: sl2wm on Sep 13, 2009 5:18 PM

  • Unable to install Java 2 Platform Standard Edition Development Kit 1.4.2_11

    I am unable to install Java 2 Platform Standard Edition Development Kit 1.4.2_11 and NetBeans IDE 5.0 on Windows 98. I get the following message:
    Java 2 Platform Standard Edition Development Kit 1.4.2_11 cannot be installed on your computer because current account does not have sufficient privileges.
    I am trying to install at home, no network, and as far as I can tell, there is no way to give yourself "administrative privileges". Is Windows 98 not supported anymore?

    98SE is supported. See configuration requirements for the various versions.
    Try downloading Java and installing it, then go to the NetBeans site and downloading it and installing separately.

  • Java 2 Standard Edition SDK (Software Development Kit)

    Hallo
    I bought the Brain Friendly Head First Java Guide. They recommend to install the Java 2 Standard Edition SDK (Software Development Kit) or greater.
    I click on Java ME SDK3.2 in the New Downloads menu. I read & accept the license agreement. I then go back to the overview menu option, click on download the system just take me back to accept license agreement page.
    What did I do wrong? Please assist me.
    Zelda Kuhn

    I think you're trying to download the wrong thing. This link will give you the right download:
    http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html
    --Andy                                                                                                                                                                                                                                                                                                                                                                                   

  • I can not download SAP Business Intelligence Java Software Development Kit

    Does anybody know why I can´t download
    SAP Business Intelligence Java Software Development Kit
    I get a Error i don´t know if I do something wrong i have an account and i am able to download all the other thing but not this.
    403
    Sorry, you do not have the correct
    permissions to access this page.
    You may have received this link from another user with permissions different from your own, or you may be trying to access a page restricted to your user-type.
    However, if you believe this error is the result of a technical problem unrelated to your permissions, please take a screenshot of this page (usually Function + Print Screen), or copy the URL from the browser address bar along with the text of the error message and email it to [email protected] Please include your SDN User-ID in all correspondence.

    OK i mailed it and became that notice
    This is caused by a bad URL. I am forwarding to our Content Team for correction. Please try pasting the URL below into the address bar of an SDN session. This is the direct url to the download.
    ftp://ftp.sap.com/pub/sdn/devkits/BI-SDK/bi_sdk.zip

  • How do I search the downloaded Java? Platform, Standard Edition 6 API?

    I am a newbie to Java (I had done some limited programming in C ++ years ago). I have downloaded the Java? Platform, Standard Edition 6 API Specification, and can view this in my Firefox browser. How can I search to certain classes in this documentation easily? For instance, if I want to ding out all of the operations available for String or System.out, etc, , is there a way that I can type in System.out, or String somewhere, and get a list of what is available?
    Thanks

    Brian_Rohan wrote:
    Here is the code that I compiled and it worked:Yeah, "args" there isn't part of the API. It's the name of the variable that is the first parameter to the main method defined there.
    The stuff between the parentheses is a list of declarations of local variables that form the parameter list to that method, to put it technically.
    The thing that's part of the API is the class String. In "String[] args", the bit on the left is the type of the variable, and the bit on the right is name of the variable. A name of something you define like that wouldn't be in the API. However, the name of the class String is.
    If you look at the import statements, you'll see if the name "String" is actually shorthand for a class defined elsewhere. There's this:
    import java.util.*;So you can know that "String" is either defined in the java.util package, in the "helloworld" package (which also wouldn't be in the API because you're defining in there using the package keyword), or in java.lang. (The "java.lang" package is automatically imported.)
    You could look in the API docs for java.util.String or java.lang.String to find the class definition. But I'll save you the time by letting you know that it's actually java.lang.String.
    Again I am new at this, what would args.length be?You'll see that the type of the "args" variable is "String[]". That means that it's an array of String objects. (The [] means arrays.) Arrays all have a field called "length". This also is part of the language, not the API, so it would be in a language guide, not the API.
    The value of args.length would depend on how you ran your program. When you run a program on the command line like this:
    java HelloWorldor this:
    java HelloWorld foo bar bazThe java virtual machine takes all the things after the class name and sticks them in an array of String. Then it looks for a static method named "main" in the HelloWorld class, and passes it that array. So in the first case above, args.length would be zero, and in the second case it would be three.
    By the way, when you post code, please wrap it in code tags. Highlight it, then click the "CODE" button above the text input box.
    Edited by: paulcw on Nov 4, 2009 6:35 PM

  • Java Software Development Kit (SDK) for Java 6 on Leopard.

    Does anyone know if the Java Software Development Kit (SDK) comes with Leopard, or if one needs to sign up for an Apple developer account to obtain it?
    I typed the following command on the Terminal command line: 
        javac
    The output of that command was:
    Usage: javac <options> <source files>
    where possible options include:
      -g                         Generate all debugging info
      -g:none                    Generate no debugging info
      -g:{lines,vars,source}     Generate only some debugging info
      -nowarn                    Generate no warnings
      -verbose                   Output messages about what the compiler is doing
      -deprecation               Output source locations where deprecated APIs are used
      -classpath <path>          Specify where to find user class files
      -cp <path>                 Specify where to find user class files
      -sourcepath <path>         Specify where to find input source files
      -bootclasspath <path>      Override location of bootstrap class files
      -extdirs <dirs>            Override location of installed extensions
      -endorseddirs <dirs>       Override location of endorsed standards path
      -d <directory>             Specify where to place generated class files
      -encoding <encoding>       Specify character encoding used by source files
      -source <release>          Provide source compatibility with specified release
      -target <release>          Generate class files for specific VM version
      -version                   Version information
      -help                      Print a synopsis of standard options
      -X                         Print a synopsis of nonstandard options
      -J<flag>                   Pass <flag> directly to the runtime system
    I would like to use Java version 6.

    Hi John,
    I sort of remember Java 6  being IntelMac only...
    Once you’ve gotten logged in, go to Downloads, select “Java” on the right hand side of the page, and download the Java SE 6 beta. Note: this is only available for Intel Macs running Tiger or Leopard — if you’ve got a G4 or G5, you’re out of luck right now
    http://www.metaphoriclabs.com/articles/installing-java-6-on-mac-os-x/
    But here they are...
    http://ituploads.com/apple/macintosh-os-x-java-jdk/
    Can I do Java 6 development in OS X?...
    http://stackoverflow.com/questions/739418/can-i-do-java-6-development-in-os-x

  • Partner with a video editing software developer

    I ONLY listen to music through Spotify. I hardly own any digital music anymore. But I run into a major problem when using my action cameras (a Garmin VIRB and GoPro HERO4) because I can't import my Spotify music to add to my personal videos. It would be great if spotify would partner with these or another video editing software developer so premium members can import their saved music for this purpose.

    Updated: 2015-06-09Marked as new idea.
    However this seems unlikely since Spotify needs to track the played songs in order to compensate the artists for each played track. With videos (that can be used offline) it would be almost impossible to track the plays.

  • HELP! Where do I get the software development kit 1.3 for windows 98?

    HELP! Where do I get the software development kit 1.3 for windows 98? I got this java book and it tells me "http://java.sun.com". I guess it expects me to find it myself. I aint no good at finding stuff on the internet. Can someone give me like the exact address to download it or something? (Also, it wants me to get the java software development kit installation instructions and documentation... I have no idea what all that stuff is, or where to find it. I'm completely lost... Can someone tell me where to get that stuff?)

    Actually, the latest version is now jsdk 1.4.1
    From java.sun.com, you can click on "Downloads" at the left
    Then, you click on "java 2 platform, standard edition"
    Then, you can click on "J2SE 1.4.1"
    This leads to a page with the URL http://java.sun.com/j2se/1.4.1/download.html (you could use this URL wight now, in fact)
    That page has a table.. look for the row entitled "Windows (all languages, including English)", and in the column headed "SDK", you'll see a link "DOWNLOAD". Click on it (make sure you click on the right one!)
    You will then have to read the terms and conditions, and at the bottom, click the button labeled "ACCEPT"
    This will show a page with a link "Download j2sdk-1_4_1-windows-i586.exe"
    You click on that link, and the download will start. The file you are downloading is the installer for the J2sdk version 1.4.1
    Hope that helps!!
    Once you have downloaded it, you'll need to set it up. That's not very difficult, but if you need advice on that, I'll be watching this thread.
    Yours, Mike H...

  • Where can I download SDK software development kit

    Hi everyone, I am completely new with xcode 4 program and
    I heard that with xcode 4 I able to create any kind of apps but I just didn't get
    what is SDK IS??? IS the sdk comes with xcode 4 or do i have to download separate...
    so basically what is deference between XCODE 4 and SDK???
    AND where can I download xcode 4???
    and wehre can I domnload SDK???

    I didn't answer one of your questions.  Xcode is the suite of tools necessary to build Apple software for either OS X or iOS.  Theoretically, you could build a simple app without much programming knowledge using Xcode.  The SDK, or software development kit, are the set of API's and code that either OSX or iOS  have that you need to actually run it on specific machines.  Again, theoretically, you could use Xcode to create a program, then use the SDK's to build it for both iOS and OS X.  There are a few programs that you can tell feel amost the same on both platforms.  The Twitter App is one.  Evernote is another.
    You really should become an Apple developer, if this is an interest of yours.  It's not that expensive, and you can access lots of stuff.  You even get advanced copies of the new iOS and OS X so that you can test your Apps. 

  • Visual Studio 2013 Ultimate with Update 4 Installation Hangs on "Windows Software Development Kit" step

    Hi,
     I am attempting to install Visual Studio 2013 Ultimate with Update 4 on a Windows 2008 Server R2 machine that also has Visual Studio 2012 Ultimate already installed.
    Unfortunately, the installation always hangs on the  "Windows Software Development Kit" step. I have let it run overnight and the installation process never gets past this step. I always have to just kill the process, and uninstall.
    I have validated the checksum of the ISO, run the .exe as administrator, and also tried to install the software to both the C and D drive.
    I have also tried to run the installation with all of the optional components checked as well as with none of the optional components checked.
    In addition, I have uninstalled visual studio 2013 using the /uninstall /force command
    I have examined the log files produced at C:\Users\MYNAME\AppData\Local\Temp and I dont see anything obviously wrong.
    Here are the last few lines of the dd_vs_ultimate_20150109195533_225_Windows_SDK_Desktop.log file
    MSI (s) (DC:F0) [20:18:20:263]: Note: 1: 1402 2: UNKNOWN\Installer\Features\A2FE5D06C0E403C2836F952CE631F4A4 3: 2
    MSI (s) (DC:F0) [20:18:20:264]: Executing op: FeatureUnpublish(Feature=fe1d729f658fb745208c65956a0785d1b5,,Absent=2,Component=-N^qZe,c5?d.aP0.TOGN'+)%sZY@1xERdO]t)Sp,GXiq3m.l3EZ%Ox4io*FIQjbhz+j*zDWXXjMlUqpxp76U.08$^E=~()4a*jQRrsrMS.QvXF4uY819FP4s^d9K5=JH2CbML)ukS5l7@u%qQhykqD+hxS=.~k}N@%y_t159JF&4~{x$t&nJ)
    MSI (s) (DC:F0) [20:18:20:265]: Note: 1: 1402 2: UNKNOWN\Installer\Features\A2FE5D06C0E403C2836F952CE631F4A4 3: 2
    MSI (s) (DC:F0) [20:18:20:266]: Executing op: ActionStart(Name=RemoveFiles,Description=Removing files,Template=File: [1], Directory: [9])
    MSI (s) (DC:F0) [20:18:20:266]: Executing op: ProgressTotal(Total=2698,Type=1,ByteEquivalent=175000)
    MSI (s) (DC:F0) [20:18:20:267]: Executing op: SetTargetFolder(Folder=C:\Program Files (x86)\Windows Kits\8.0\bin\x86\)
    MSI (s) (DC:F0) [20:18:20:267]: Executing op: FileRemove(,FileName=Orca-x86_en-us.msi,,ComponentId={FE5AB6C3-6785-5A16-91A2-857596456EF8})
    Does anyone have any ideas of why this is happening? Are there any specific log files I could provide to help pinpoint the problem?
    Thanks
    Thomas

    Hello Thomas,
    "I have validated the checksum of the ISO" Do you mean you have used this page
    http://www.visualstudio.com/en-us/downloads/visual-studio-2013-iso-sha1-vs.aspx# to verify your ISO?
    Please send your full logs to me by use  http://aka.ms/vscollect . After using it, you will find vslogs.cab from %temp% folder. Please upload the file to
    https://skydrive.live.com/ 
    and share the link here.
    Actually you can refer to the following page to troubleshoot Windows SDK issue:
    http://msdn.microsoft.com/en-us/library/ee248512(v=vs.100).aspx
    The recommend way is to manually install Windows SDK itself and check the logs in detail.
    Best regards,
    Barry
    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.
    Click
    HERE to participate the survey.

  • Error when installing the latest software development kit

    Good morning. I have a dell dimension 4100 running the windows me operating system. Wen I download and try to install the latest software development kit, I get the following error message when I click the finish button. "_delis caused an error in _isdel". Any idea why?

    The copy that you downloaded sounds like it has been corrupted. Try redownloading the file, and reainstalling it. If this still happens. Let me know.

  • Xcelsius support which Adobe Flex SDK  (Software Developer Kit)??

    Hi @ all,
    can anyone tell me what Xcelsius which Adobe Flex SDK (Software Developer Kit) support?
    Xcelsius 5.3.0.0                                                     = Adobe Flex SDK 2.0.1
    SAP Crystal Reports Dashboard Design 2008           = Adobe Flex SDK  ??
    SAP Crystal Reports Dashboard Design 2011 beta     = Adobe Flex SDK  ??
    For your help I would be very grateful.
    Greetings
    Armin

    Hi Armin
    Xcelsius 2008 SDK is compiled using Flex 2.0.1 Hotfix 3.
    I am attempting to find the version of Flex that Xcelsius 2011 uses.  If I am able to find the answer, I will post it here.
    Regards,
    Chris

  • Profile problem with platform Micro Edition sdk 3.0 in Netbeans 6.7

    When I check this platform, only can be checked PBP-1.1 profile and I need PP1.1 profile.
    Do you Know something about this?
    Thanks in advance.

    check,
    (1) C:\java\jme3.0\docs\UserGuide.pdf --> Java ME Platform SDK Features : CDC Stack
    (2) C:\java\netbeans6.7.1\mobility8\config\emulator-descriptor-inst\CDC_Java_TM__Platform_Micro_Edition_SDK_3.0.xml
    all it says,
    JME3.0 stake CDC 1.1 supports only PBP 1.1

  • Java 2 Platform Standard Edition (J2SE) 5.0 Release 1

    I'm trying to use Shutterfly, an on-line photo service and am having problems. They recommended checking on my Java edition. I did at the Java check version site and got this report "You do NOT have the latest version of Java software.
    The latest version of Java software = Java Runtime Environment Version 5.0 Update 6." So I downloaded but when I tried to install, I got this message: "You cannot install J2SE 5.0 Release 1 Package on this volume. This volume contains a newer version of Java 1.5." OK, I'm stumped...according to Java I don't have the current edition, but can't install it because I have a newer version? Am I missing a critical step...would sincerely appreciate any help?

    According to http://developer.apple.com/releasenotes/Java/Java50Release4RN/index.html, you have J2SE 5.0 Release 4 installed. Where that fits in with Update 6, I don't have a clue. This might help, http://forums.macosxhints.com/showthread.php?t=47531.

Maybe you are looking for

  • Dunning Wizard error message

    Dear All, I have an error message with the Dunning Wizard, and cannot print any of the Dunning Letters. The error message is: 'Invalid variable number (RPT -6300) (Field F_136) Variable '452' I have already deleted this field from the layouts, but it

  • When I try to listen to a song I purchased last week, I get the message, "could not be used because the original file could not be found. would you like to locate it?" What do I do to find it?

    When I try to listen to the songs I purchased from iTunes last week, I get the error message, "could not be used because the original file could not be found. would you like to locate it?"  What do I do to fix this problem or locate the song? Thanks!

  • XML Element to string conversion returning null

    Hi, When i try to convert XML Element to string using toString() API, it returns something like [device: null] where device is element tag. Code is as follows - Document xmlDoc; DOMParser parser = (DOMParser)Class.forName("org.apache.xerces.parsers.D

  • LIMIT question

    Hello! I've got one interesting question on OLAP DML. Assume you have dimension ARTICLES and one hierarchy with levels CATEGORY, SUB-CATEGORY, ITEM and one cube with variable SALES measured by this dimension. question: how to limit ARTICLES dimension

  • Palm Centro Won't Power On

    Alright, so I've had my palm Centro for almost a year now and have run into the infamous Hotsync Loop problem once before. I did a soft reset and it fixed the problem. Now it has happened again and the phone will not respond to soft or hard resets at