Tagged Questions
The sun tag has no wiki summary.
91
votes
11answers
42k views
Why should I use the Sun JDK over the OpenJDK, or vice-versa?
I recently purchased a new laptop and made my old one into a Linux box, running Ubuntu. I started to download the tools that I need, and I'm getting my Java development environment set up now. I have ...
26
votes
10answers
2k views
Why are so many new languages written for the Java VM?
There are more and more programming languages (Scala, Clojure,...) coming out that are made for the Java VM and are therefore compatible with the Java Byte-Code.
I'm beginning to ask myself: Why the ...
22
votes
9answers
8k views
Java VM: IBM vs Sun
I'm surprised at how little information I can find comparing IBM's jvm to Sun's. How do they compare?
I have always used Sun's version - what are the reasons (if any) to consider switching to ...
17
votes
14answers
9k views
Is Sun Java Certification worth the expense? Will it help me start a programming career?
The certification's cost between $300-400 per exam which is pretty expensive.
I'm still a java newb but eventually I would like to get a job in the field of computer programming and I'm wondering if ...
17
votes
3answers
679 views
Are invisible references still a problem in recent JVMs?
I was reading Java Platform Performance and section A.3.3 worried me.
I had been working on the assumption that a variable that dropped out of scope would no longer be considered a GC root, but this ...
16
votes
10answers
8k views
Position of the sun given time of day, and lat/long
Anyone want to share some nice code that gives the position of the sun (elevation and azimuth) given latitude and longitude and time of day ?
And date, of course.
15
votes
7answers
2k views
What Happened To Java (Specifically The Language)?
Back in 2000 (when .NET was unleashed upon us IIRC) it was an innovative cutting edge language (last time I used it was 2003).
From what I read though, Sun has only evolved the language exceedingly ...
14
votes
5answers
2k views
Why does the Sun JVM continue to consume ever more RSS memory even when the heap, etc sizes are stable?
Over the past year I've made huge improvements in my application's Java heap usage--a solid 66% reduction. In pursuit of that, I've been monitoring various metrics, such as Java heap size, cpu, Java ...
14
votes
15answers
4k views
Is it worth becoming Sun Certified? [closed]
I am a developer of about 2 years, who is looking to progress my career. I've mainly worked with Java up to now on various projects, and was considering trying to take the Sun Certified Java ...
13
votes
8answers
625 views
Are there equivalences between Microsoft and Oracle/Sun technologies?
is it possible to say what are the Microsoft equivalents technologies compared to Sun?
For example:
Microsoft | Oracle/Sun
...
13
votes
9answers
826 views
Will Sun ever make the step to “Java 3”? [closed]
(Java 3 refers to theoretical post-Java-7 releases, remember:
"Java SE was known as Java 2 Platform Standard Edition or J2SE from version 1.2 until version 1.5." That's why the name "Java 3" was ...
9
votes
1answer
263 views
Connect to Sun LDAP with ADO
I want to connect (and get user's group) to a Sun LDAP server with a Delphi program.
I think ADSI works only with Microsoft LDAP. I try it with ADO, but I can't connect.
Can someone show some code ...
9
votes
2answers
7k views
Where can I find old versions of the JDK and JRE?
To test compatibility, I need to find old versions of the JRE and JDK. Where can I find download links to these files?
8
votes
5answers
7k views
where to get full source code for rt.jar (jre 6 Update 22 )
I am searching the source code for rt.jar for Oracle JRE/JDK 6 Update 22.
The src.zip, which is included with the delivery, does not contain all sources, for examples the sun.* (e.g. ...
8
votes
3answers
1k views
Can standard Sun javac do incremental compiling?
Recently I started to use Eclipse's java compiler, because it is significantly faster than standard javac. I was told that it's faster because it performs incremental compiling. But I'm still a bit ...
8
votes
2answers
659 views
Sun Certification Plus vs. “old” certification system
a few month ago, I passed the SCJP - the Sun Certified Java Programmer.
I intended to do the SCWCD now, but there's this Sun Certification Plus-thing going on... so I don't know if it's worth ...
8
votes
5answers
4k views
Is the SCWCD still worthwhile, and if so, how to prepare?
If you have taken the Sun Certified Web Component Developer certification, or otherwise know a lot about it, how would you rate its usefulness? How does it compare with SCJP or SCJD, for example? ...
8
votes
11answers
3k views
Why are there many JRE implementations?
I was wondering..There is Sun's JRE, IBM's JRE, BEA's JRE, Oracle's JRE and some more less know JREs in the market.
Why is there so many JRE implementations? Does the fact that Sun opened the Java ...
7
votes
4answers
7k views
Help: The following artifacts could not be resolved: javax.jms:jms:jar:1.1
I am trying to compile a maven project, but I systematically get the following error message:
[ERROR]Failed to execute goal on project ...: Could not resolve dependencies for project ...:war:1.0.0: ...
7
votes
3answers
18k views
Java Garbage Collection Log messages
I have configured java to dump garbage collection information into the logs (verbose GC). I am unsure of what the garbage collection entries in the logs mean. A sample of these entries are posted ...
7
votes
5answers
842 views
Is the original Java ideal dead?
I feel that while I love J2ME and Java it's hypocritical of them to have two APIs for Java. Java was designed with "One code, many platforms" in mind, and now it's more like "One API for every OS, and ...
6
votes
3answers
1k views
Java Virtual Machines (JVM) and their performance comparison
I was wondering if there somebody knows if there are some benchmarks which compare the following jvms.
sun jvm vs. openjdk jvm vs. rockit jvm vs. j9 jvm vs. apache harmony.
Which one is has the best ...
5
votes
1answer
279 views
Compute shadow length using PyEphem
I am using PyEphem and want to calculate the length of a shadow (assume a stick of unit length is planted in the ground). The length will be given by cot(phi), where phi is the solar elevation angle ...
5
votes
5answers
280 views
In C# could we imagine writing our own events without writing delegates?
I learned the object-oriented in Java. Now in develop in C#. This means that I never really understood the functioning of delagates but I know how to use them.
Lately I discovered this page ...
5
votes
1answer
1k views
What impact, if any, does the -d64 swtich have on Sun JVM resident memory usage?
I've got this webapp that needs some memory tuning. While I'm already profiling the application itself and trimming things down, the JVM itself seems overly bloated to me on our busiest instance. ...
5
votes
6answers
2k views
How can I suppress java compiler warnings about Sun proprietary API
I'm using the encode() method from the sun.misc.BASE64Encoder package. How do I suppress the compiler warnings that it generates?
sun.misc.BASE64Encoder is Sun proprietary API and may be removed ...
4
votes
1answer
94 views
Why does sun C++ compiler change symbol names when compiling with debug infos?
I have this source file:
// ConstPointer.cpp
const short * const const_short_p_const = 0;
const short * const_short_p = 0;
and compiled it with and without debug infos (SUN C++ Compiler 5.10):
# ...
4
votes
1answer
307 views
Where do I download javacomm for linux now that Oracle decommissioned Suns download site?
I cannot for the life of me figure out where exactly I can download the javacomm library.
There is a download link on this page http://www.oracle.com/technetwork/java/index-jsp-141752.html that ...
4
votes
3answers
155 views
Why Sun's Arrays.sort implementation creates a clone of the input array?
Can someone please explain the following code?
Source: Arrays.class,
public static <T> void sort(T[] a, Comparator<? super T> c) {
T[] aux = (T[])a.clone();
if (c==null)
...
4
votes
1answer
304 views
Sun Java jstat does not work .. sometimes !
I frequently use jstat to obtain GC related statistics. However, there are times when I simply cannot obtain any of the statistics from a JVM. It just says that it cannot find the process id, even ...
4
votes
4answers
455 views
Is there a Java (Sun/Oracle) equivalent of the Microsoft MVP Program?
We already run a NFR (not for resale) program where we give Microsoft MVP's a reduced cost licence of our software.
We would like to extend this to the Java community, but I'm having trouble finding ...
4
votes
3answers
138 views
Can DDD account for strings?
I am trying to figure out a problem in my c++ code and have DDD to debug with on a Sun machine. I am required to use strings per some standard we have. But whenever DDD encounters a string variable, ...
4
votes
3answers
265 views
Looking for java source code from sun
I am pretty sure that this is a stupid question but after poking around on the sun page for about an hour I am completely confused.
I want to get the source (.java NOT .class) files for this:
...
4
votes
1answer
3k views
What is the cause of JVM exit code 1073807364?
I've built a RCP-based application, and one of my users running on Windows XP, Sun JVM 1.6.0_12 had a full application crash. After the app was running for two days (and this is not a new version or ...
4
votes
5answers
684 views
which non-sun java(s) can i use to run Clojure?
I'm automating the process of building development-VMs for a project and having a really hard time getting sun-java-6 to install in a non-interactive environment because it really wants to ask about ...
4
votes
6answers
583 views
It is a bad practice to use Sun's proprietary Java classes?
The compiler display warnings if you use Sun's proprietary Java classes. I'm of the opinion that it's generally a bad idea to use these classes. I read this somewhere. However, aside from the warnings ...
3
votes
0answers
88 views
ASP (Classic) on Linux Chilisoft Replacement
Sun's One Server worked great up until Sun Disappeared.
Now looking around the landscape the classic ASP solutions are all abadoned.
Apache::ASP appears to be perl wrapped in ASP tags.
Chilisoft ...
3
votes
2answers
92 views
What is the advantage of using the class Unsafe to write atomics over synchronize blocks?
why java Atomics uses sun Unsafe class rather than using synchronize block/volatile?
3
votes
4answers
129 views
Where can I find JDK6 source repository?
On the JDK6 source page the repository link is broken, and the location that is described in readme doesn't exist. I know that there is also OpenJDK repository, but as I understand, it isn't the same.
...
3
votes
2answers
71 views
Can I ask dtrace what probes are enabled?
If it matters, I am using Mac OS X, but I believe this would apply across OSs. If the answer is different per OS, I would be interested in learning about that as well.
Let's say that I open a ...
3
votes
1answer
311 views
How to calculate longitude using PyEphem
tried to calculate sun lat and long using PyEphem but not matching with ephemeris
SUN: 2011 MAY 04 We 04 14:46:08 13TA12 = 43 degrees approx (As per website www.findyourfate.com)
a = Sun()
...
3
votes
2answers
196 views
Stack Overflow on SUN Sparc
/* attack.c */
/* compile: cc -o attack attack.c */
#include <stdlib.h>
#include <stdio.h>
/* lsd - Solaris shellcode */
static char shell[] = /* 10*4+8 bytes */
...
3
votes
2answers
231 views
Why did Sun develop the Java platform? [closed]
Why did Sun (now owned by Oracle, I know) develop the Java Plaform? How does it make business sense? It seems to me like it would be a very expensive project (also, any ideas on how much they ...
3
votes
1answer
505 views
How to let idlj compile idl files in ant
I've no idea how to compile my idl files with the sun-idl compiler (idlj) with the help of ant?
Does anyone have an idea?
3
votes
1answer
101 views
Java bug database: where to send comments that 3 votes is not enough
Sun's bug database for Java allows you to vote for up to 3 bugs.
Where can I send feedback that 3 bugs is not enough? (seems like a bug in the bugtracker)
They've left bugs unfixed for years that do ...
3
votes
2answers
2k views
Makefile error: Unexpected end of line seen
Trying to install Git, I ran configure and make, but got the following error message:
make: Fatal error in reader: Makefile,
line 221: Unexpected end of line seen
The Makefile looks like:
...
3
votes
2answers
262 views
hw to get source code native c language library of java 1.4?
Hi i want to see implementation of java.util.zip.CRC32. But within this class its using native c library functions for core implementation.How can I get the native source code. I can see the ...
3
votes
4answers
1k views
Sun RPC: transferring binary files
I want to transfer binary files to remote server. I am using SUN/ONC RPC (rpcgen on Linux) for my code. I am using C. I have written code for server and client and it works for text files, but when I ...
3
votes
3answers
2k views
MyFaces vs Sun Reference Implementation of JSF
Maybe, some performance comparison or some noticeable specific differences is what I want to know.
As I heard there is no really big difference. Hence, I've got one more question. For what purposes ...
3
votes
1answer
454 views
Anyone tried submitting hs_err files to Sun?
I run a lot of java code on my servers, and occasionally I get a JVM crash, accompanied by a crash dump hs_err_pid file.
Lately I've decided to try to be a better netizen, so I examined the latest ...