Java 6 (Mustang) GA Release

Does anyone know when the Java 6 GA release is scheduled, if at all? I looked at the JSR but it appears they haven't gotten there yet. We have a 1.3 application, which I would really like to rewrite. I read that 1.3 will be EOL upon this release of Java 6.

According to https://jdk6.dev.java.net/ under the news section:
"Beta 2 is out! and we are heading towards final release in late October. See beta2 notes from Danny and Mark. [June 15, 2006]"
But as we all know, deadlines are made so that they can be missed.

Similar Messages

  • Java Desktop System Release 3 - Login problems

    Hi all,
    This is my first post here so apologies if I'm in the wrong area. I've recently installed Solaris 10 (5.10 Generic_118833-36) onto a V245. I wanted to see if I could get the gui desktop to work so I downloaded/installed Hummingbird Exceed on to my Windows XP workstation. Having launched Exceed XDMCP broadcast I could see my host in the list so I selected and clicked OK. I was instantly presented with the blue login shell, so good so far. In options, sessions I chose Java Desktop System release 3. When I tried to login as root the login shell just dies and disappears but If I use a non-root account it takes me all the way in to the desktop gui. The same thing happens if I use select CDE as the session type as well.
    So my question is how do you login as root?
    I gues it's a config file somehwere that needs a tweak but I've not been able to find anything helpful on Goolge so far.
    Any help is most appreciated.
    Thanks
    Jon Barker

    I just removed the locales using the same tool and I can log in now.
    Does anyone have any idea why this is or the correct way to install extra locales ?
    Thanks

  • Reg : JA310 : Java Web Dynpro Release 640

    Hello All,
              I'm following the SAP's JA310 Java Web Dynpro Release 640 Documentation as part of my learning.
    In this Documentation I found some examples in which it says to open an already existing project with a pre-defined structure.
    I guess SAP may have provided some CD with solutions of the Exercises along with this documentation .
    I don't have that CD.
    If any of u guys have this then I request you to send the content of that CD to my Personnel mail id : <b>[email protected]</b>.
    Thanks in advance for ur understanding.
    Regards,
    Deepu.K

    Hi,
    there is no solution CD for the JA310 course.
    The mentioned "open an already existing project" describes the process
    of importing the project while sitting in the class, having access to
    the WTS-infrastructure of SAP during the course.
    Regards,
    Michael

  • Java se zip release

    Dear All,
    Does anyone know why has been the java se zip release removed from the download section? Long ago it was a possibility for experts to download the whole jdk in one archive. I need it because I'd like to try the java 6, but I use java 5, and i don't want any trouble after a new jdk install. Is it possible to get jdk 6 as a zip?
    thanks,
    Gergely

    There is a solution, but it's not pretty. You can use a hex editor to find all the cab headers in the file ("MSCF"), and extract the individual cabs from the downloaded executable. Each cab will contain a portion of the JDK. The most important one is the cab that contains tools.zip, because it contains the compiler and most of the libraries. You don't need to worry about the length of the cabs so you can just copy from the header to the end of the file. The extra data after the end of the cab will be ignored.
    Like I said, not pretty or easy, but if you really wanted to do it that way...
    Alternatively, just install on another machine and then copy it to your machine.

  • Java ME 8 Released!

    Exciting news: Java ME 8 Released!
    Best,
    -- Terrence

    Hi Travis,
    Right, there is no UI API in ME8 except for Line UI. We've working on defining the proper API but currently cannot say what that would be. Sure it will not be MIDP 3 UI, it was dropped as not relevant for embedded. LWUIT? almost likely not. As you can see we put a serious effort in converging Java SE embedded and Java ME embedded, so there is high chance that UI APIs are converged as well
    Regards,
    Andrey

  • Java Desktop System, Release 2 - Error activating XKB configuration

    Hi,
    There is know problem with Java Desktop System, Release 2:
    If you log in using accessibility features on the Java
    Desktop System for the Solaris platform, the following
    error dialog might appear: Error activating XKB configuration.
    How can I solve this problem? Can I disable accessibility features (especially when I log in using NoMachine NX Client)?
    Thanks,
    Rafal

    I have been trying to install Oracle version 10g on Sun Java Desktop System Release 2 (Linux) but unable to do so.Some error message?
    Can I install Oracle on Sun Java Desktop System Release 2 (Linux)? How to do that?As far I know Sun JDS release 2 is based on SuSE so check Suse related installation papers.
    You can find them on http://www.oracle.com/technology/tech/linux/install/index.html
    What version of Oracle ver 10g Release 1 should I download?Depends on architecture (CPU) and installed OS version (32bit, 64bit).

  • Uploading file with Java: Java won't release the file.

    I'm trying to upload .log files to a webbsite using a form. It uploads fine, that's not the problem. The problem is that I want it to delete the file afterwards to save disk space, but the application doesn't release it. I thought I might just be doing something wrong with the delete function, but even deleting it manually through Windows doesn't work. Any ideas?
    import java.io.*;
    import java.net.URL;
    import java.net.URLConnection;
    import java.util.*;
    public class ClientHttpRequest
        protected void connect()
            throws IOException
            if(os == null)
                os = connection.getOutputStream();
        protected void write(char c)
            throws IOException
            connect();
            os.write(c);
        protected void write(String s)
            throws IOException
            connect();
            os.write(s.getBytes());
        protected void newline()
            throws IOException
            connect();
            write("\r\n");
        protected void writeln(String s)
            throws IOException
            connect();
            write(s);
            newline();
        protected static String randomString()
            return Long.toString(random.nextLong(), 36);
        private final void boundary()
            throws IOException
            write("--");
            write(boundary);
        private final void postCookies()
            StringBuffer stringbuffer = new StringBuffer();
            for(Iterator iterator = cookies.entrySet().iterator(); iterator.hasNext();)
                java.util.Map.Entry entry = (java.util.Map.Entry)iterator.next();
                stringbuffer.append(entry.getKey().toString() + '=' + entry.getValue());
                if(iterator.hasNext())
                    stringbuffer.append("; ");
            if(stringbuffer.length() > 0)
                connection.setRequestProperty("Cookie", stringbuffer.toString());
        public void setCookie(String s, String s1)
            throws IOException
            cookies.put(s, s1);
        public void setCookies(Map map)
            throws IOException
            if(map == null)
                return;
            } else
                cookies.putAll(map);
                return;
        public void setCookies(String as[])
            throws IOException
            if(as == null)
                return;
            for(int i = 0; i < as.length - 1; i += 2)
                setCookie(as, as[i + 1]);
    private final void writeName(String s)
    throws IOException
    newline();
    write("Content-Disposition: form-data; name=\"");
    write(s);
    write('"');
    public void setParameter(String s, String s1)
    throws IOException
    boundary();
    writeName(s);
    newline();
    newline();
    writeln(s1);
    private static final void pipe(InputStream inputstream, OutputStream outputstream)
    throws IOException
    byte abyte0[] = new byte[0x7a120];
    int j = 0;
    int i;
    synchronized(inputstream)
    while((i = inputstream.read(abyte0, 0, abyte0.length)) >= 0)
    outputstream.write(abyte0, 0, i);
    j += i;
    outputstream.flush();
    abyte0 = null;
    public void setParameter(String s, String s1, InputStream inputstream)
    throws IOException
    boundary();
    writeName(s);
    write("; filename=\"");
    write(s1);
    write('"');
    newline();
    write("Content-Type: ");
    URLConnection _tmp = connection;
    String s2 = URLConnection.guessContentTypeFromName(s1);
    if(s2 == null)
    s2 = "application/octet-stream";
    writeln(s2);
    newline();
    pipe(inputstream, os);
    newline();
    public void setParameter(String s, File file)
    throws IOException
    setParameter(s, file.getPath(), ((InputStream) (new FileInputStream(file))));
    public void setParameter(String s, Object obj)
    throws IOException
    if(obj instanceof File)
    setParameter(s, (File)obj);
    else
    setParameter(s, obj.toString());
    public void setParameters(Map map)
    throws IOException
    if(map == null)
    return;
    java.util.Map.Entry entry;
    for(Iterator iterator = map.entrySet().iterator(); iterator.hasNext(); setParameter(entry.getKey().toString(), entry.getValue()))
    entry = (java.util.Map.Entry)iterator.next();
    public void setParameters(Object aobj[])
    throws IOException
    if(aobj == null)
    return;
    for(int i = 0; i < aobj.length - 1; i += 2)
    setParameter(aobj[i].toString(), aobj[i + 1]);
    public InputStream post()
    throws IOException
    boundary();
    writeln("--");
    os.close();
    return connection.getInputStream();
    public InputStream post(Map map)
    throws IOException
    setParameters(map);
    return post();
    public InputStream post(Object aobj[])
    throws IOException
    setParameters(aobj);
    return post();
    public InputStream post(Map map, Map map1)
    throws IOException
    setCookies(map);
    setParameters(map1);
    return post();
    public InputStream post(String as[], Object aobj[])
    throws IOException
    setCookies(as);
    setParameters(aobj);
    return post();
    public InputStream post(String s, Object obj)
    throws IOException
    setParameter(s, obj);
    return post();
    public InputStream post(String s, Object obj, String s1, Object obj1)
    throws IOException
    setParameter(s, obj);
    return post(s1, obj1);
    public InputStream post(String s, Object obj, String s1, Object obj1, String s2, Object obj2)
    throws IOException
    setParameter(s, obj);
    return post(s1, obj1, s2, obj2);
    public InputStream post(String s, Object obj, String s1, Object obj1, String s2, Object obj2, String s3,
    Object obj3)
    throws IOException
    setParameter(s, obj);
    return post(s1, obj1, s2, obj2, s3, obj3);
    private final void _mththis()
    os = null;
    cookies = new HashMap();
    boundary = "---------------------------" + randomString() + randomString() + randomString();
    public ClientHttpRequest(URLConnection urlconnection, String s)
    throws IOException
    _mththis();
    connection = urlconnection;
    urlconnection.setDoOutput(true);
    urlconnection.setRequestProperty("User-Agent", s);
    urlconnection.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
    public ClientHttpRequest(URL url, String s)
    throws IOException
    this(url.openConnection(), s);
    public ClientHttpRequest(String s, String s1)
    throws IOException
    this(new URL(s), s1);
    private static Random random = new Random();
    URLConnection connection;
    OutputStream os;
    Map cookies;
    String boundary;

    And you're closing the inputstream to the file?Thanks, I knew it was something simple like that but I'd been staring at it so long I couldn't see it. I guess a fresh pair of eyes helps.

  • JAVA SE 7 Release Date

    Has a specifc GA release date for Java SE 7 been published ?

    DarrylBurke wrote:
    jwenting wrote:
    macrules2 wrote:
    Explicitly checking a boolean value for equality with true or false is redundant, and generally a sign of an inexperienced developer.So is thinking that something newer is always better...Careful, your age is showing ;-)Yeah well with age comes wisdom. And the arrogance to ignore said wisdom :)

  • Java 1.6 release client

    Does anybody know when the next Java 1.6 version will be released for Tiger? The last version that I see for download on the ADC is dated Sep 13, 2006 (Java 6 Release 1).
    Thanks,
    Mike

    Contact your Apple Developer contact. This is a user to user forum here that does not have privy to information found only to select member developers. Please read the Terms of Use on the right where it says:
    "2. Submissions
    Search or browse for existing answers before you ask a question. Someone else may have asked your question — it may save you some time.
    Stay on topic. Apple's discussion forums are here to help people use Apple products and technologies more effectively. Unless otherwise noted, don't add Submissions about nontechnical topics, including:
    That Apple rumor you saw on another website.
    Discussions of Apple policies or procedures.
    Speculations/rumors about unannounced products.
    The status of your 1973 MG Midget restoration."
    I think this falls under an unannounced product as http://www.apple.com/java/ only has Java 5.

  • Announce: Generic Algorithms for Java, 0.3 release

    The latest release of jga: Generic Algorithms for Java is now available at
    http://jga.sf.net/
    Included in this release are a collection of algorithms adapted from STL that operate over generic collections and iterations. What's included are the algorithms that do not attempt to modify the collection/iteration that they're given: in other words, all of the find/search/count algorithms. Also included are the complete set of functors and predicates that were present in the last release, with a few modifications for easier use.
    The library is released under the LGPL, and includes the source for the library, the test framework, and a non-genericized version of the test framework that verifies that the library may be used without having the generic environment available.

    A (similar, it seems) parameterized collections library for JSR-14 Java.I had looked at JUtil some time ago, and I'm not sure of the similarity: JUtil looks to provide a number of interesting (if somewhat specialized) collections. JGA provides functors & predicates, and STL-ish algorithms that operate on collections and iterators. Looks to me to be more complimentary than similar.
    Mr. Ananian/Astaire's site is also the source of SinjDoc, the javadoc tool that I used to generate the javadoc at jga.sf.net, and with which I replaced the munge4doc.pl and mungedoclist.pl scripts that I had previously used and posted on this forum.

  • When is Java going to release it's own perfume?

    Given the current penchant for threads demanding that Java be afforded ever-more-unlikely and unnecessary extensions, for no reason other than somebody thought of it whilst on the toilet, and the other current trend for one to be a total nobody (apparently) until one has ones own brand of perfume, I'd like to know when Eau de Gosling or whatever will be released. Dukes for the funniest response. Maybe

    DrLaszloJamf wrote:
    abillconsl wrote:
    DrLaszloJamf wrote:
    abillconsl wrote:
    georgemc wrote:
    Reverse psychology? Pah! That'll never work!No I knowit won't - you are too too smart for me. And I don't want any more either.Just ignore me. I'm only sending this from a war zone. Sound of mortars in the background. Wait a minute. No, that's just BDLH. Chili for lunch. Did I mention I could use some Sun Java for Men about now?WoW! I feel for you dude.
    Did you ever read the short story, [ I have no mouth, and I must scream?|http://en.wikipedia.org/wiki/I_Have_No_Mouth,_and_I_Must_Scream]
    No and it sounds horrid. And besides, I don't like science fiction. And besides, I don't like depressing literature. And besides, I don't like screaming. And besides, I don't like depressing science fiction literature about screaming. And ...

  • Simple Java question about releasing beans from memory

    Hi,
    I use many beans in my app. Is there a way to release them from memory, or destroy the object. I feel that its possibly eating my memory up over time. Most of my beans are in page scope. Some are in session scope. So the page scope ones should kill them at the end of execution of the page and the session ones should delete the object from memory when at the last page of the app where session is no longer needed.
    Someone mentioed System.exit(1); but I have not found any clear documentation that this will free up the memory that it has used.
    Thanks for your time. It is appreciated.

    There is no way to explicitly force the memory to be released. The JVM garbage collection will take care of it when more memory is required. The programmer's responsibility is to ensure that there are no remaining references to the object. System.exit() ends the JVM so you do not want to use that. You can call System.gc() to request that garbage collection runs, but the JVM does not guarantee that it will.

  • Bug in Oracle XSchema Processor for Java v1 (recently released)

    Running the sample file is giving the following error. Is this a bug
    Thanks
    Exception in thread "main" java.lang.NoSuchMethodError
    at oracle.xml.parser.schema.XSDBuilder.initParser(XSDBuilder.java:260)
    at oracle.xml.parser.schema.XSDBuilder.build(XSDBuilder.java:179)
    at XSDSetSchema.main(XSDSetSchema.java:24)
    null

    ah, yes. the 1k limit again. fantastic...
    code (note: this is hardcoded and terribly unpolished...but it works...):
    import javax.security.auth.login.Configuration;
    import javax.security.auth.login.AppConfigurationEntry;
    import java.util.ArrayList;
    import java.util.StringTokenizer;
    import java.util.HashMap;
    import java.util.Map;
    public class CITestAuthenticationConfiguration extends Configuration { 
    private static ArrayList appConfigurationList = new ArrayList();
    public CITestAuthenticationConfiguration(){}
    public AppConfigurationEntry[] getAppConfigurationEntry(String applicationName){
    Map map = new HashMap();
    AppConfigurationEntry ace = new AppConfigurationEntry(
    "CITestLoginModule",
    AppConfigurationEntry.LoginModuleControlFlag.REQUIRED,
    map
    AppConfigurationEntry[] aceArray = new AppConfigurationEntry[1];
    aceArray[0] = ace;
    return aceArray;
    public void refresh()
    // Right now this is a load once scheme and we will not implement the
    // refresh method
    public static boolean addAppConfigurationEntry ( String flag, String module, String options )
    // REMOVED FOR BREV[i]Long postings are being truncated to ~1 kB at this time.

  • Java application not release memory

    I have java 1.3 or 1.4, my application start correctly.
    I have set heap a 4Mb but process java begin consume ram, initialy start with 7MB after 12-15 hour the process have above 60% system mem (128Mb).
    After 16-18 hour kernel kill process.
    I have Ubuntu distribution
    Thanks

    it is difficult to address this question without having a knowledge of the application. Here are some suggestions:
    (1) run the application from within Java Studio in debug mode. This will give you an idea of what is absorbing the memory. The idea here is to be able to watch your data structures grow. Any tool that allows you to do this will help. See http://developers.sun.com/prodtech/javatools/jsenterprise/index.html
    for Java Studio Enterprise.
    (2) the chances are very good that your application is creating some sort of Collection (Set, Hashtable, Vector, ...) and slowly adding to it. This is very common and a common cause of "memory leak".
    (3) The garbage collector in Java frees memory as objects go out of scope. If the objects never go out of scope, they are never garbage collected.
    (4) If you have these such objects or collections that must always be accessable, consider adding some caching mechanism (putting the data to disk) whereby keeping your datastructures smaller.
    (5)Also, when you say "set the heap" I am assuming you used the -Xmx and -Xms command line options. If not, look into these.

  • Jave 1.4 Release

    Does anyone know how the 1.4 project is coming along, and when the JDK 1.4 and JRE will be released?
    I remember the date being an approximate "mid September" ... just looking for an update!
    thanks,
    Andrew

    I remember the date being an approximate "mid
    September" ... just looking for an update!You must have been mistaken - that's when beta 2 was supposed to arrive (which it did, of course). The alpha version should be released sometime in the last quarter; likely before the christmas, that is :)

Maybe you are looking for

  • 200G 4200 rpm vs 160G 5400 rpm?

    I'm considering a 200G drive for the extra capacity -- it seems like you can never have a drive that's too big. I'd love to be able to partition it for different development/OS environments. But can you get a drive that's too slow? Would I notice the

  • Automatic Partial Payments

    Hello, I was curious about some details of automatic payments. I am an account manager on a family share plan but I am not the primary account holder. Is it possible for me to make automatic payments for my portion of the bill (as in make a set monet

  • Find Number of Active Calendar Client Sessions?

    What is the "ps" command to find the number of active Calendar clients at any given time? We are using 10.1.2 in an OCS installation on Linux SuSe servers. Also, is there a way to see the individual usernames associated with each active session?

  • Why won't the Watermark Menu scroll?

    I have Lightroom 5.3 and I can't get the watermark menu in the export dialogue box to scroll up or down. It's effectively stuck and I can't apply my 2014 watermark.  I've tried deleting some existing watermarks in the main lightroom folder but it has

  • How can I get surround sound to export through the correct speakers?

    Hello there! I am experienced with Soundtrack Pro and can successfully export 5.1 surround. I'm moving over to Logic Pro to try out 7.1 surround, but I can't even export 5.1 surround successfully since dialogue for example comes out of all speakers,