| Is Eclipse the Commercial IDE Killer? |
|
 |
Index ‹ java-programmer
|
- Previous
- 5
- Any HID support for Java?Human Interface Device (mouse, etc)
Does anyone know whether java support the HID devices? (under MS
Windows)
I checked the document but did not see any. A google on this group
also returns little information.
Thanks a lot.
- 6
- JNI: passing Objects containing non-primitive types back and forthHi folks,
looked through a lot a threads overhere already but did not find an
answer detailed enough:
I want to map a c-structure like this created in my native code
struct mystruct {
long pid ;
long data[] ;
long meta[][] ;
} ;
to a java-object within my Java-code which would look like this IMHO:
public class ComplexData {
final int maxdata = 100 ;
final int maxmeta = 5 ;
private long pid ;
private data[] = new long[maxdata] ;
private meta[][] = new long[maxdata][maxmeta] ;
public void ComplexData() {
// Assigning values
pid = 1234 ;
data[0] = ...
}...
As far as I understood it is now possible to pass this Java-object to
the native code using the JNI-Function NewObject and read the members
and assign their values to the c-structure's members (to make them
available from within c) and the other way round, assign the values
from the c-structure to the members within the Java-object (possibly
without the initialization in the "Java-world" (I need both
directions).
My problem now is: How do I access the object's members (especially
the array types) from within c? Functions pointed to in different
threads (e.g. (Get|Set)LongArrayRegion ) need the reference to the
array, but I have only the reference to the object up to now.
Any code snippets based on the code above would be helpful.
Cheers
Bernd
- 7
- PrintServiceLookup.lookupPrintServices fails to list new printers until re-start (JDK1.4.2_03, Linux RedHat, Tomcat 4.x)Hi Forum,
How could I get
javax.print.PrintServiceLookup.lookupPrintServices(null,null) to return the
current available services while the program that uses lookupPrintServices
is running? In a tomcat servlet I use the lookupPrintServices(..) to get a
list of the printer services available. The class works well and returns the
list but if I install a new printer, the servlet does not list the newly
installed service until I restart Tomcat. Is there a way to unload and
reload the PrintServiceLookup class and then call
PrintServiceLookup.lookupPrintServices?
It appears that the lookupPrintServices(..) returns the list of services
that was available when the instance of the virtual machine was started.
Hence, while the instance is running, it allways returns the same list of
services. If I run a program that lists the services and then exits, the
program lists the newly added printer on re-run. But if the program never
exits (it runs in a loop, re-listing the services every so often), and I add
a new printer while the program is running, the newly added printer is not
listed until I terminate teh rpogram and re-start it.
Thanks in advance for your responser
- 9
- performance and memory usage.
Hi
I created a test program to try the speed and size management of the JDK
HashMap. With regards to this I was wondering if anybody has any
comments on whether this is an appropriate way of testing this
performance, i.e. how realistic is the results with respect to caching
influence of data, heap management etc. The code is simple, but would it
produce a correct result. (the program finishes in 11 seconds on my
machine). the code is attached.
Secondly, I was wondering about the memory (heap) usage in java for this
program. It needs at least 256 MB of heap to run to finish. cmd:
java -Xms32m -Xmx256m -cp target/classes/ App
Using -Xmx128m causes OutOfMemoryError.
When calculating on the size of the datastructure i find approx that
2M Dto's = 16MB
2M Integer's for map key = 8MB
2M Integer's for ArrayList = 8MB
Thats a total of 32MB plus some megabytes for the objects,
datastructures, JVM and so on. So probably about 48-64MB in total.
Thats a completely different number from 128 MB or 256 MB.
Does anybody have any comments on why the program requires that much memory?
arnie
*****************
/* Create 2 million Dto objects with random data and insert into HashMap
also add key to an iterable list */
public void test1() {
int size = 2000000;
Map<Integer, Dto> hmap = new HashMap<Integer, Dto> (size);
Collection<Integer> alist = new ArrayList<Integer> (size);
Random r = new Random();
Dto data;
for (int c=size; c>0; c--) {
data = new Dto();
data.ip= r.nextInt(2000000000);
hmap.put(data.ip, data);
alist.add(data.ip);
}
int c = 1;
for (Integer d : alist) {
hmap.get(d);
}
}
/* Simple data placeholder */
public class Dto
{
public int ip;
public int serialnum;
}
- 11
- Vetoing a change by DefaultCellEditor in JTableI'm using a DefaultCellEditor with a JTextField to capture a String
that is ultimately passed to setValueAt in my TableModel. In that
method, I have logic which could throw an exception if the String's
contents proves to be invalid (i.e. one use is where the String is a
regular expression that might be syntactically invalid).
How can I handle this? Right now, the code throws an Exception which
I'd like to catch, display a dialog, and then return the user to
editing without ever committing the value. Is this easily doable?
Regards,
Brian.
- 14
- Help needed (GUI/passing objects)
Hi, I'm a student learning java. In my latest assignment, I am to create a
Scheduler/Diary, with a GUI.
I am getting the error
Exception in thread "main" java.lang.NoSuchMethodError: BaseFrame: method
<init>
()V not found
at Dairy.main(Dairy.java:22)
From the main method in 'project.class', I create the diary object, which
creates month and day objects etc...
I create a state object, which takes in the Diary Object and points to the
selected month, day, appointment etc
I then create a gui object, which is to change the state (through methods in
the state).
This error occurs whenever I pass in the state object to the GUI
('BaseFrame').
Exception in thread "main" java.lang.NoSuchMethodError: BaseFrame: method
<init>
()V not found
at Dairy.main(Dairy.java:22)
I'm not sure whats causing this. I'm checking like 22 in the 'diary' class,
but it's a }. Not too helpful.
GUI appears when no state object is passed, can't manipulate the data with
that though....
In main:
------------
//set up the Diary
Diary dia = new Diary();
//set up the state
State diaryState = new State(dia);
//Set up the gui
BaseFrame firstFrame = new BaseFrame(diaryState);
---------------
When setting up the GUI:
---------------
State curState;
//constructor for the basic frame, takes in a state object
public BaseFrame(State sta)
{
curState = sta;
.....................}
--------------------------
Done a search online, didn't get too far. Any ideas? What does that error
mean exactly?
- 14
- Precision problem with doubleHi everyone,
I am a Java beginner, and I am trying to create a very simple binary
tree.
Each node has a value, the left child has the same value + an
increment, the right child has the same value - the same increment.
I try to recursively create the tree, but I have precision problems.
My "main" node has a value of 10, the increment is 0.1, tree depth is
4
So i want a tree that goes like this :
depth 1 : 10
depth 2 : 0.9 / 10.1
depth 3 : 0.8 / 10 / 10 / 10.2
depth 4 : 0.7 / 0.9 / 0.9 / 10.1 / 0.9 / 10.1 / 10.1 / 10.3
But at depth 4 when I try to print the value I get 9.700000000000001
instead of 9.7, and 10.299999999999999 instead of 10.3
And things get worse when the depth increase.
All the values and increment are stored in double (native type).
Is it normal? How can I avoid this problem?
Thanks a lot,
Tom.
[main class]
double increment = 0.1;
double startValue = 10;
int maxDepth = 4;
Tree myTree = new Tree(startValue, 1);
myTree.recursivelyCreateChildren(increment, maxDepth);
[Tree.java]
public int depth;
public double value;
public Tree leftChild;
public Tree rightChild;
Tree(double value, int depth){
this.value=value;
this.depth=depth;
System.out.println("node of depth " + depth + " created, value = " +
value);
}
public void createChildren(double increment){
rightChild = new Tree(value - increment, depth+1);
leftChild = new Tree(value + increment, depth+1);
}
public void recursivelyCreateChildren(double increment, int maxDepth)
{
if (depth < maxDepth){
createChildren(increment);
leftChild.recursivelyCreateChildren(increment, maxDepth);
rightChild.recursivelyCreateChildren(increment, maxDepth);
}
}
- 15
- How to receive events from a jcombobox in an internal Jpanel ??Good evening,
I've a Frame with two Jpanel, in Jpanel1 I've a Jcombobox and it's
listener while in Jpanel2 I've a JLabel where I want to write the
selected value of the Jcombobox,
Jpanel1 , Jpanel2 and the main frame are in 3 separate class and files,
this because I want to arrange a modular design.
My question is how I can receive in the main Frame the event coming
from Jcombox value changed in Jpanel1 ???
Thanks for your help
Antonio
www.etantonio.it/en
- 15
- src.zip of j2ee1.4 sdkHi,
I downloaded the j2ee1.4 sdk, but I can't seem to find the source files
in that package. They used to be in a src.zip file, or not? Anyway I
already looked at the Sun website, but I didn't find a URL to download
the source files from.
Kind regards,
Dirk
- 15
- Java encryption <--> .NET encryptionHajo,
I need to exchange encypted data between
.NET and Java environments. The first
problem I encountered is that symmetric
ciphers in .NET needs initialization
vector and Java counterparts don't.
Can some one point me out the place
where I can find any practise and
patterns for encrypted communication
between Java and .NET ?
thanks for any info
Gawel
- 15
- Location of Temp Directory?I'm having an app developed for me and they are storing the files in a
newly created folder on the C: drive but I don't want to make directory
there. Is there not a way to get the temp variable for machine, like
%temp or %tmp? Thanks
- 16
- Error :could not initialize interface awt - Exception:java.lang.ExceptionInInitializerErrorHello
i had problems by the install of the german language pack 6.0.2.CF1
for a Lotus domino Server 6.0.2 CF1.
the System:
Acer altos 19000 Server
2X Pentium Pro 200 Mhz
512 MB Ram
OS windows 2000 Server SP4
the Update of the Notes Server was no Problem but when I tried to
install the Language Pack German (its an Java install Wizard ) there
coms the following Error Message :
Error :could not initialize interface awt - Exception:
java.lang.ExceptionInInitializerError
and if i installd the java software jre 1.3.1 standart the Aplet in
Systemcontrol could not be opend without anny Error Message.
what can I do?
Please help.
Thanks for Help
Stefan Germany
- 16
- JComboBox strange behaviorHello!
I have interesting problem with javax.swing.JComboBox (java 1.4.2)
When I click at combo to open list - there is no reaction to mouse
moves except these on combo header or outside my combo. So I cannot
choose any item from the list.
But I can use keyboard...
This is default combo, I've just create it and populate some Strings
into it.
any idea what's wrong?
B.
- 16
- Reference and Garbage CollectionI'm not quite sure about what kind of references to an object determine
its "alive" quality and its readiness for garbage collection. For the
moment I understand that *any* living reference, including non-explict
of member classes, keep the object alive.
Would you agree that the follwoing class "NeverRelease" entails
instances which will never get prone to garbage collection?
class NeverRelease
{
Child1 child;
public NeverRelease ()
{
child = new Child1();
}
private class Child1
{
}
}
While would you also agree that instances of the following class
"AlwaysRelease" always become garbage because the member class is static
and hence does not take reference to the enclosing class?
class AlwaysRelease
{
Child2 child;
public AlwaysRelease ()
{
child = new Child2();
}
private static class Child2
{
}
}
- 16
- Java FACT ?"FACT: Java has no first-class functions and no macros. This results in
warped code that hacks around the problem, and as the code base grows,
it takes on a definite, ugly shape, one that's utterly unique to Java.
Lisp people can see this clear as day. So can Python folks, so can Ruby
folks. Java people flip out, and say "macros are too much power",
or "what do u mean i dont understand u" or "fuck you, you jerk,
Lisp will NEVER win". -- Steve Yegge, 2006-04-15
what would you people make of the above statement ? Has anyone here
used Lisp *and* Java on major projects ? If so would you say this
sounds off-base or correct ?
thanks,
--dcnstrct
|
| Author |
Message |
Jerry McBride

|
Posted: 2005-6-21 7:37:00 |
Top |
java-programmer, Is Eclipse the Commercial IDE Killer?
Thomas G. Marshall wrote:
> Super Spinner coughed up:
>> Tim Tyler wrote:
>>> In comp.lang.java.advocacy Super Spinner <email***@***.com>
>>> wrote or quoted:
>>>
>>> [Eclipse plugins]
>>>
>>>> I'd say that anyone that came up with an extension wouldn't be able
>>>> to make money because an OSS group would make a knock-off and give
>>>> it away for free.
>>>
>>> Your argument apparently suggests that nobody can make money selling
>>> software. I think history has proven that that is not the case.
>>
>> I think that one can make money by selling software only if the
>> software is "complex", where "complex" means "too complex to be
>> satisfactorily knocked off by OSS". And the set of "complex" sofware
>> becomes smaller and smaller, as OSS commodotizes more and more
>> markets. I used to think that something like Excel was sufficiently
>> complex to be safe from OSS, but I now know that within the next 5
>> years the spreadsheet market will be fully commodotized and therefore
>> not profitable. The same goes for all "office"-type apps. The same
>> goes for Photoshop and the like.
>>
>> The only software that I can see being safe from commodotization is
>> software that requires special domain knowledge, knowledge that devs
>> themselves do not possess and aren't likely to obtain in a competent
>> manner. Something like tax preparation software; this requires expert
>> knowledge of the tax laws and accountants that have such knowledge
>> aren't foolish enough to work for free like software devs appear to be
>> eager to do. So I can't see OSS "winning" in that space (yes, there
>> are OSS tax preparation packages, but the vast majority won't trust
>> that the devs understand the tax laws enough to trust those packages).
>>
>> Now, as for IDE extensions, sorry, there's no way that those are out
>> of the reach of OSS commodotization. Any extension would be knocked
>> off within a year, so the developers of the original would only have
>> one year to recoup the initial investment of resources and I don't see
>> anyone bothering to try. So nearly all future IDE extensions will
>> have to come from OSS from the get-go.
>>
>> A lot of OSS starts life as poor man's versions of commercial software
>> and gradually improves, but as commercial software is killed off, new
>> software inventions will have to come from OSS itself.
>>
>> As for individual programmers, they'll have to make money by working
>> on in-house stuff or custom solutions for a contractor, because it'll
>> be quite difficult to make money selling software to the general
>> public since OSS competition will make such an effort prohibitive.
>
> I have said for a lonnng time that if you write free software, you are
> only
> making it more difficult for other software engineers to earn a living. I
> don't mean small little utilities, like OE_QuoteFix and the like. But
> creating entirely free large scale applications doesn't make you a hero,
> it makes you a villain.
>
There's an easy solution to this. All the "for money" people have to do is
WRITE BETTER software...
I can't believe that projects like Eclipse are doing so well, simply because
they are OSS. It's because they are better...
--
******************************************************************************
Registered Linux User Number 185956
FSF Associate Member number 2340 since 05/20/2004
Join me in chat at #linux-users on irc.freenode.net
Buy an Xbox for $149.00, run linux on it and Microsoft loses $150.00!
7:42pm up 10 days, 4:15, 1 user, load average: 0.05, 0.07, 0.03
|
| |
|
| |
 |
Jerry McBride

|
Posted: 2005-6-21 7:37:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
Thomas G. Marshall wrote:
> Super Spinner coughed up:
>> Tim Tyler wrote:
>>> In comp.lang.java.advocacy Super Spinner <email***@***.com>
>>> wrote or quoted:
>>>
>>> [Eclipse plugins]
>>>
>>>> I'd say that anyone that came up with an extension wouldn't be able
>>>> to make money because an OSS group would make a knock-off and give
>>>> it away for free.
>>>
>>> Your argument apparently suggests that nobody can make money selling
>>> software. I think history has proven that that is not the case.
>>
>> I think that one can make money by selling software only if the
>> software is "complex", where "complex" means "too complex to be
>> satisfactorily knocked off by OSS". And the set of "complex" sofware
>> becomes smaller and smaller, as OSS commodotizes more and more
>> markets. I used to think that something like Excel was sufficiently
>> complex to be safe from OSS, but I now know that within the next 5
>> years the spreadsheet market will be fully commodotized and therefore
>> not profitable. The same goes for all "office"-type apps. The same
>> goes for Photoshop and the like.
>>
>> The only software that I can see being safe from commodotization is
>> software that requires special domain knowledge, knowledge that devs
>> themselves do not possess and aren't likely to obtain in a competent
>> manner. Something like tax preparation software; this requires expert
>> knowledge of the tax laws and accountants that have such knowledge
>> aren't foolish enough to work for free like software devs appear to be
>> eager to do. So I can't see OSS "winning" in that space (yes, there
>> are OSS tax preparation packages, but the vast majority won't trust
>> that the devs understand the tax laws enough to trust those packages).
>>
>> Now, as for IDE extensions, sorry, there's no way that those are out
>> of the reach of OSS commodotization. Any extension would be knocked
>> off within a year, so the developers of the original would only have
>> one year to recoup the initial investment of resources and I don't see
>> anyone bothering to try. So nearly all future IDE extensions will
>> have to come from OSS from the get-go.
>>
>> A lot of OSS starts life as poor man's versions of commercial software
>> and gradually improves, but as commercial software is killed off, new
>> software inventions will have to come from OSS itself.
>>
>> As for individual programmers, they'll have to make money by working
>> on in-house stuff or custom solutions for a contractor, because it'll
>> be quite difficult to make money selling software to the general
>> public since OSS competition will make such an effort prohibitive.
>
> I have said for a lonnng time that if you write free software, you are
> only
> making it more difficult for other software engineers to earn a living. I
> don't mean small little utilities, like OE_QuoteFix and the like. But
> creating entirely free large scale applications doesn't make you a hero,
> it makes you a villain.
>
There's an easy solution to this. All the "for money" people have to do is
WRITE BETTER software...
I can't believe that projects like Eclipse are doing so well, simply because
they are OSS. It's because they are better...
--
******************************************************************************
Registered Linux User Number 185956
FSF Associate Member number 2340 since 05/20/2004
Join me in chat at #linux-users on irc.freenode.net
Buy an Xbox for $149.00, run linux on it and Microsoft loses $150.00!
7:42pm up 10 days, 4:15, 1 user, load average: 0.05, 0.07, 0.03
|
| |
|
| |
 |
J鰎n W. Janneck

|
Posted: 2005-6-21 11:54:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
Thomas G. Marshall wrote:
[snip]
> I have said for a lonnng time that if you write free software, you are
only
> making it more difficult for other software engineers to earn a living. I
> don't mean small little utilities, like OE_QuoteFix and the like. But
> creating entirely free large scale applications doesn't make you a hero,
it
> makes you a villain.
that sounds as if you thought that people have a moral right to be paid as
programmers. (?) why is it more villainous to make it difficult for someone
to get paid as a programmer than to expect people to pay you for something
that someone else would give them for free?
-- j
|
| |
|
| |
 |
J鰎n W. Janneck

|
Posted: 2005-6-21 11:58:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
Thomas G. Marshall wrote:
> Tim Tyler coughed up:
>> In comp.lang.java.advocacy Thomas G. Marshall
>> <email***@***.com> wrote or
[snip]
>> Microsoft didn't charge for IE. Google didn't charge for the use of
>> their search engine. Sun didn't charge for Java. Giving away
>> freebies
>> is big business on the net.
>
> All three of those examples allow them to leverage /other/ money making
> enterprises of them. None of MS, Google, nor Sun survive on good wishes.
so giving away things out of generosity or a feeling of reciprocation is
wrong and makes someone a villain, but giving them away out of greed and in
the hope of making people pay for them in indirect ways is good and
laudable?
-- j
|
| |
|
| |
 |
dave

|
Posted: 2005-6-21 16:06:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
"J鰎n W. Janneck" <jwjanneck at yahoo dot com> wrote:
>Thomas G. Marshall wrote:
>[snip]
>> I have said for a lonnng time that if you write free software, you are only
>> making it more difficult for other software engineers to earn a living. I
>> don't mean small little utilities, like OE_QuoteFix and the like. But
>> creating entirely free large scale applications doesn't make you a hero,
> >it makes you a villain.
>
>that sounds as if you thought that people have a moral right to be paid as
>programmers. (?) why is it more villainous to make it difficult for someone
>to get paid as a programmer than to expect people to pay you for something
>that someone else would give them for free?
That is not the point. The point is that programmers with
too much free time are ruining other peoples' business.
This kind of thing can only happen in the software-industry
because all it takes to create (or better to say in this
context, copy) software is time (and expertise).
But, imagine this ; if some really, really rich person would start
creating cars which are almost identical as some existing brand
(for example, the Volkswagen Beetle) and would give them away
for free ?
This would obviously damage Volkswagen which has invested
a lot of money and time in developing this car in the first
place. This would be considered 'really unfair business'.
With software, this is no different. These OSS guys which
all are working on free versions of existing software are
ruining it all for programmers who actually DO HAVE a job.
|
| |
|
| |
 |
jabailo@texeme.com

|
Posted: 2005-6-21 16:24:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
email***@***.com wrote:
> That is not the point. The point is that programmers with
> too much free time are ruining other peoples' business.
Most are employed in large businesses and institutions that have a need for
better quality software...which is why they write it.
Necessity is the Mother of Invention.
> This kind of thing can only happen in the software-industry
> because all it takes to create (or better to say in this
> context, copy) software is time (and expertise).
B.S. Writing good software is magic -- as magic as making music. Some can
create perfect programs, that are dry and never get used. Others throw
together the barest essentials, and yet garner great acceptance.
> But, imagine this ; if some really, really rich person would start
> creating cars which are almost identical as some existing brand
> (for example, the Volkswagen Beetle) and would give them away
> for free ?
Look -- for most middle class and above people, goods are essentially
'free'. THey are free in the sense that the burden of buying a car is no
longer something unbearable. Families can buy and replace cars easily.
> This would obviously damage Volkswagen which has invested
> a lot of money and time in developing this car in the first
> place. This would be considered 'really unfair business'.
Well, as in software, you just don't take a lot of money and do such things.
The De Lorean is an example. This person got all the money and funding and
resources and design and yet could not produce a car that people would
want.
> With software, this is no different. These OSS guys which
> all are working on free versions of existing software are
> ruining it all for programmers who actually DO HAVE a job.
Most programmers are not writing or selling office suites.
--
Texeme Textcasting Technology
http://www.texeme.com
|
| |
|
| |
 |
Tim Tyler

|
Posted: 2005-6-21 17:41:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
In comp.lang.java.advocacy email***@***.com wrote or quoted:
> "J鰎n W. Janneck" <jwjanneck at yahoo dot com> wrote:
> >Thomas G. Marshall wrote:
> >> I have said for a lonnng time that if you write free software, you are only
> >> making it more difficult for other software engineers to earn a living. I
> >> don't mean small little utilities, like OE_QuoteFix and the like. But
> >> creating entirely free large scale applications doesn't make you a hero,
> > >it makes you a villain.
> >
> >that sounds as if you thought that people have a moral right to be paid as
> >programmers. (?) why is it more villainous to make it difficult for someone
> >to get paid as a programmer than to expect people to pay you for something
> >that someone else would give them for free?
>
> That is not the point. The point is that programmers with
> too much free time are ruining other peoples' business.
>
> This kind of thing can only happen in the software-industry
> because all it takes to create (or better to say in this
> context, copy) software is time (and expertise).
>
> But, imagine this ; if some really, really rich person would start
> creating cars which are almost identical as some existing brand
> (for example, the Volkswagen Beetle) and would give them away
> for free ?
>
> This would obviously damage Volkswagen which has invested
> a lot of money and time in developing this car in the first
> place. This would be considered 'really unfair business'.
You seem to be muddling two issues together here. One
is the issue of the cost of products. The other is the
issue of using other people's designs and ideas.
Are you suggesting free software is more prone to
copying the ideas of others than any other sort of
software is? If so, what evidence is there for that?
There /is/ a set of laws that prevent large powerful
agents from putting other companies out of business
by giving away goods that compete with their products.
These laws are anti-monopoly laws - and are there
to prevent organisations attaining dominant positions
- or extending existing dominant positions into
adjacent areas.
It is quite a strained analogy to think that these
apply to the distributors of most free software.
Those laws may have applied to Microsoft when
distributing IE free of charge, though.
--
__________
|im |yler http://timtyler.org/ email***@***.com Remove lock to reply.
|
| |
|
| |
 |
Kier

|
Posted: 2005-6-21 18:20:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
On Tue, 21 Jun 2005 10:05:51 +0200, dave wrote:
> "J鰎n W. Janneck" <jwjanneck at yahoo dot com> wrote:
>
>>Thomas G. Marshall wrote:
>>[snip]
>>> I have said for a lonnng time that if you write free software, you are only
>>> making it more difficult for other software engineers to earn a living. I
>>> don't mean small little utilities, like OE_QuoteFix and the like. But
>>> creating entirely free large scale applications doesn't make you a hero,
>> >it makes you a villain.
>>
>>that sounds as if you thought that people have a moral right to be paid as
>>programmers. (?) why is it more villainous to make it difficult for someone
>>to get paid as a programmer than to expect people to pay you for something
>>that someone else would give them for free?
>
> That is not the point. The point is that programmers with
> too much free time are ruining other peoples' business.
Not all OSS programmer work in their 'free time'. And if your programs
aren't worth buying, no one will buy them, regardless of any free programs
others may create.
>
> This kind of thing can only happen in the software-industry
> because all it takes to create (or better to say in this
> context, copy) software is time (and expertise).
>
> But, imagine this ; if some really, really rich person would start
> creating cars which are almost identical as some existing brand
> (for example, the Volkswagen Beetle) and would give them away
> for free ?
>
> This would obviously damage Volkswagen which has invested
> a lot of money and time in developing this car in the first
> place. This would be considered 'really unfair business'.
>
> With software, this is no different. These OSS guys which
> all are working on free versions of existing software are
> ruining it all for programmers who actually DO HAVE a job.
Why do you assume that they don't have jobs either? Or that they'll all
working on free versions of existing software? Or, indeed, that they don't
have the right to create software for free? Or that the world owes
*anyone* a living?
--
Kier
|
| |
|
| |
 |
Shmuel (Seymour J.) Metz

|
Posted: 2005-6-21 19:45:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
begin In <email***@***.com>, on 06/21/2005
at 10:05 AM, email***@***.com said:
>That is not the point. The point is that programmers with too much
>free time are ruining other peoples' business.
If they were doing that with the intent of creating and cashing in on
a monopoly, then that would be bad. I see nothing wrong with doing so
pro bono publico. I've been programming for decades, and what I see as
bad is software that is distributed without source code, whether or
not I have to pay for it. Was it evil that programmers in the 1950s
and 1960s routinely exchanged code in order to save effort?
>But, imagine this ; if some really, really rich person would start
>creating cars which are almost identical as some existing brand
>(for example, the Volkswagen Beetle) and would give them away for
>free ?
As long as he did not use that as a way of creating a monopoly, I see
nothing wrong with it.
>This would be considered 'really unfair business'.
Only if he started charging after he had driven out the competition.
>With software, this is no different. These OSS guys which all are
>working on free versions of existing software are ruining it all for
>programmers who actually DO HAVE a job.
Hogwash; at worst they are ruining it for greedy corporations. Most
programmers are involved in writing software tailored to the needs of
their employers, not in writing general purpose software.
--
Shmuel (Seymour J.) Metz, SysProg and JOAT <http://patriot.net/~shmuel>
Unsolicited bulk E-mail subject to legal action. I reserve the
right to publicly post or ridicule any abusive E-mail. Reply to
domain Patriot dot net user shmuel+news to contact me. Do not
reply to email***@***.com
|
| |
|
| |
 |
Lin鴑ut

|
Posted: 2005-6-21 19:47:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
email***@***.com poked his little head through the XP firewall and said:
> But, imagine this ; if some really, really rich person would start
> creating cars which are almost identical as some existing brand
> (for example, the Volkswagen Beetle) and would give them away
> for free ?
>
> This would obviously damage Volkswagen which has invested
> a lot of money and time in developing this car in the first
> place. This would be considered 'really unfair business'.
No, it would be considered "philanthropy".
> With software, this is no different. These OSS guys which
> all are working on free versions of existing software are
> ruining it all for programmers who actually DO HAVE a job.
No. I use "free" software extensively. Yet I also have a job
programming.
Please let me know when OSS comes up with free air-traffic control
facility software. Our clients would be interested.
--
When all you have is a hammer, everything looks like a nail.
|
| |
|
| |
 |
dave

|
Posted: 2005-6-21 20:25:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
On Tue, 21 Jun 2005 06:47:07 -0500, Lin鴑ut <lin鴈mail***@***.com> wrote:
>email***@***.com poked his little head through the XP firewall and said:
>
>> But, imagine this ; if some really, really rich person would start
>> creating cars which are almost identical as some existing brand
>> (for example, the Volkswagen Beetle) and would give them away
>> for free ?
>>
>> This would obviously damage Volkswagen which has invested
>> a lot of money and time in developing this car in the first
>> place. This would be considered 'really unfair business'.
>
>No, it would be considered "philanthropy".
>
>> With software, this is no different. These OSS guys which
>> all are working on free versions of existing software are
>> ruining it all for programmers who actually DO HAVE a job.
>
>No. I use "free" software extensively. Yet I also have a job
>programming.
>
>Please let me know when OSS comes up with free air-traffic control
>facility software. Our clients would be interested.
Well, you can only hope that the demand for your company's software
is not big enough to make it 'worthwile' to create a free version.
But if some twisted mind decides to create air-traffic control software
with some help of his air-trafic-buddies and then starts to give it away
for free, then what ?..
Then your company would probably go bankrupt.
|
| |
|
| |
 |
Tim Tyler

|
Posted: 2005-6-21 20:43:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
In comp.lang.java.advocacy email***@***.com wrote or quoted:
> On Tue, 21 Jun 2005 06:47:07 -0500, Lin鴑ut <lin鴈mail***@***.com> wrote:
> >email***@***.com poked his little head through the XP firewall and said:
> >> But, imagine this ; if some really, really rich person would start
> >> creating cars which are almost identical as some existing brand
> >> (for example, the Volkswagen Beetle) and would give them away
> >> for free ?
> >>
> >> This would obviously damage Volkswagen which has invested
> >> a lot of money and time in developing this car in the first
> >> place. This would be considered 'really unfair business'.
> >
> >No, it would be considered "philanthropy".
> >
> >> With software, this is no different. These OSS guys which
> >> all are working on free versions of existing software are
> >> ruining it all for programmers who actually DO HAVE a job.
> >
> >No. I use "free" software extensively. Yet I also have a job
> >programming.
> >
> >Please let me know when OSS comes up with free air-traffic control
> >facility software. Our clients would be interested.
>
> Well, you can only hope that the demand for your company's software
> is not big enough to make it 'worthwile' to create a free version.
>
> But if some twisted mind decides to create air-traffic control software
> with some help of his air-trafic-buddies and then starts to give it away
> for free, then what ?..
>
> Then your company would probably go bankrupt.
That's what tends to happen in a capalist economy where a competitor
develops a good product at a lower cost - and the company facing that
competition is too inflexible to either reduce their own prices or move
on to another market.
Historically, software has been a lucrative market place, with lots
of money to be made in it. I should think there's not much need to
bitch about those pitching ultra-low cost products into the market,
in the hope of finding a foothold.
--
__________
|im |yler http://timtyler.org/ email***@***.com Remove lock to reply.
|
| |
|
| |
 |
Thomas G. Marshall

|
Posted: 2005-6-21 22:05:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
J鰎n W. Janneck coughed up:
> Thomas G. Marshall wrote:
>> Tim Tyler coughed up:
>>> In comp.lang.java.advocacy Thomas G. Marshall
>>> <email***@***.com> wrote or
> [snip]
>>> Microsoft didn't charge for IE. Google didn't charge for the use of
>>> their search engine. Sun didn't charge for Java. Giving away
>>> freebies
>>> is big business on the net.
>>
>> All three of those examples allow them to leverage /other/ money
>> making enterprises of them. None of MS, Google, nor Sun survive on
>> good wishes.
>
> so giving away things out of generosity or a feeling of reciprocation
> is wrong and makes someone a villain, but giving them away out of
> greed and in the hope of making people pay for them in indirect ways
> is good and laudable?
Most of the time yes, with regards to products! Giving things away "out of
greed" is how employees get paid, how the economy does well, and when the
economy does well fewer people die or do without. It's true: More people
get health coverage, more kids eat better, more children get braces, etc.
--
Doesn't /anyone/ know where I can find a credit card company that
emails me the minute something is charged to my account?
|
| |
|
| |
 |
Kristian Thy

|
Posted: 2005-6-21 22:54:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
Quoth Thomas G. Marshall:
>> so giving away things out of generosity or a feeling of reciprocation
>> is wrong and makes someone a villain, but giving them away out of
>> greed and in the hope of making people pay for them in indirect ways
>> is good and laudable?
>
> Most of the time yes, with regards to products! Giving things away "out of
> greed" is how employees get paid, how the economy does well, and when the
> economy does well fewer people die or do without. It's true: More people
> get health coverage, more kids eat better, more children get braces, etc.
Hey, I like that. What's more, it can be boiled down to a nice little
slogan:
"Open Source Software Hurts People"
Neat, innit?
Of course, you can count on the same firms who make good money by
(rightfully) exploiting the capitalist market system to be the biggest
whiners when they are undercut by the competition.
--
\\kristian
|
| |
|
| |
 |
Ray Ingles

|
Posted: 2005-6-21 23:02:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
In article <email***@***.com>, email***@***.com wrote:
>>that sounds as if you thought that people have a moral right to be paid as
>>programmers. (?) why is it more villainous to make it difficult for someone
>>to get paid as a programmer than to expect people to pay you for something
>>that someone else would give them for free?
>
> That is not the point. The point is that programmers with
> too much free time are ruining other peoples' business.
Economic dislocations happen. Nobody gets rich selling buggy whips
since the automobile came along. Should they? Should we pass a law that
a certain percentage of profits from auto sales go to the buggy whip
manufacturers?
> This kind of thing can only happen in the software-industry
> because all it takes to create (or better to say in this
> context, copy) software is time (and expertise).
Perhaps this qualitative difference has some implications for what
economic models suit the field best?
Hollywood was absolutely terrified of VCRs when they first came out,
insisting that if they weren't suppressed then the entertainment
industry would collapse. Now, VHS movies and DVDs make more money
than box office receipts.
There are ways to make money off of software with open source,
but they are different from the current standard way:
http://rsss.anu.edu.au/~janeth/OSBusMod.html#d9
> With software, this is no different. These OSS guys which
> all are working on free versions of existing software are
> ruining it all for programmers who actually DO HAVE a job.
If the pro version isn't better than the free version - better
enough to justify paying for it - then why does it deserve money
at all?
--
Sincerely,
Ray Ingles (313) 227-2317
In October 1965, the Selective Service announced that married men
without children could then be drafted. Exactly nine months and
two days later... [Dick Cheney's] first child was born.
http://dir.salon.com/politics/feature/2000/08/01/draft/index.html
|
| |
|
| |
 |
JEDIDIAH

|
Posted: 2005-6-21 23:30:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
On 2005-06-21, Shmuel (Seymour J.) Metz <email***@***.com> wrote:
> begin In <email***@***.com>, on 06/21/2005
> at 10:05 AM, email***@***.com said:
>
>>That is not the point. The point is that programmers with too much
>>free time are ruining other peoples' business.
So? That's the whole POINT of the market. Even with perfect
competition, unmolested either by monopolies or governmental interference
there will be winners and losers. Eventually, even the best mousetrap
will become a commodity.
This process is really the whole point of capitalism and one of
the primary mechanisms through which capitalist societies build their
wealth.
>
> If they were doing that with the intent of creating and cashing in on
> a monopoly, then that would be bad. I see nothing wrong with doing so
> pro bono publico. I've been programming for decades, and what I see as
> bad is software that is distributed without source code, whether or
> not I have to pay for it. Was it evil that programmers in the 1950s
> and 1960s routinely exchanged code in order to save effort?
[deletia]
They're just whining about one form of open competition. It's
fine for the 800lb gorilla to undermine companies and their business
model but it's not allowable for smaller entities to do likewise.
--
The best OS in the world is ultimately useless |||
if it is controlled by a Tramiel, Jobs or Gates. / | \
|
| |
|
| |
 |
Arkady Duntov

|
Posted: 2005-6-21 23:50:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
On Tuesday 21 June 2005 02:05, email***@***.com <email***@***.com>
(<email***@***.com>) wrote:
> That is not the point. The point is that programmers with
> too much free time are ruining other peoples' business.
That's an attempt to make nonsense into a point.
> [snip unsupportable comparison with material good production]
> With software, this is no different. These OSS guys which
> all are working on free versions of existing software are
> ruining it all for programmers who actually DO HAVE a job.
The diesel locomotive ruined the jobs of the firemen on coal-fired
locomotives. If your job is endangered by free software, you may
wish to find a different job.
|
| |
|
| |
 |
Arkady Duntov

|
Posted: 2005-6-21 23:53:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
On Tuesday 21 June 2005 08:04, Thomas G. Marshall
<email***@***.com>
(<Z7Vte.6034$Wb.5029@trndny03>) wrote:
> Giving things away "out of greed" is how employees get paid, how the
> economy does well, and when the economy does well fewer people die or do
> without.
Free software causes collapse of the economy. Film at 11.
|
| |
|
| |
 |
Arkady Duntov

|
Posted: 2005-6-21 23:55:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
On Tuesday 21 June 2005 08:16, Thomas G. Marshall
<email***@***.com>
(<NiVte.119$Z.80@trndny05>) wrote:
> But that product is frightfully expensive, and if you think that the price
> doesn't disuade people from using it, then you're wrong. I won't touch the
> thing for that reason alone!
Children are starving to death because you won't buy expensive software.
|
| |
|
| |
 |
Lin鴑ut

|
Posted: 2005-6-22 1:15:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
email***@***.com poked his little head through the XP firewall and said:
> On Tue, 21 Jun 2005 06:47:07 -0500, Lin鴑ut <lin鴈mail***@***.com> wrote:
>
>>Please let me know when OSS comes up with free air-traffic control
>>facility software. Our clients would be interested.
>
> Well, you can only hope that the demand for your company's software
> is not big enough to make it 'worthwile' to create a free version.
Why would I "hope"? If I were boss, I'd be thinking of that
possibility, and prepare for it.
Of course, your idea of prep might be to start lobbying Congress to pass
laws against OSS.
>
> But if some twisted mind decides to create air-traffic control software
> with some help of his air-trafic-buddies and then starts to give it away
> for free, then what ?..
That would be cool, if they can get up to speed on the arcane knowledge
we need, much of which is provided by former ATC people.
> Then your company would probably go bankrupt.
Nah. There's always more work to do.
Even if all software packages were covered by OSS, we would still have
to do configuration, QA, testing, installations, documentation, software
customization, and so on.
And new software ideas would come forward that haven't yet been covered
by OSS.
--
When all you have is a hammer, everything looks like a nail.
|
| |
|
| |
 |
Dave

|
Posted: 2005-6-22 3:54:00 |
Top |
java-programmer >> Is Eclipse the Commercial IDE Killer?
I don't believe any of this would have happened had companies like
Borland or Microsoft not gone overboard and tried to get $1000 for
development suites.
Had they charged $50-$100 we might all be using their tools today.
I still pay for software in cases where there are free alternatives but
I doubt I'd pay more than $40-$50 for it. For me, if a piece of
software costs $50 I will still consider it against open source
alternatives on the basis of features, not price.
When the choice is $500+ for JBuilder, or $0 for a fully functional
environment like eclipse, I'm not going to worry about weighing feature
lists. Whatever JBuilder has that eclipse doesn't can't be worth $500.
|
| |
|
| |
 |
| |
 |
Index ‹ java-programmer |
- Next
- 1
- Interrupt on Java thread..I have two threads, one reading from stdin and writing to a socket
(requestThread),
one reading from a socket and writing to stdout (responseThread).
When the response thread gets a msg from server that an error occurs, it
closes the socket and calls interrupt() for it's thread group before
exiting.
But requestThread never seems to get the interrupt.
It is blocked(?) on a readLine() from the BufferedReader omn stdin.
What am I doing wrong?
- 2
- Java Application Programmer for Oracle/Win Envir
Title: Java Application Programmer for Oracle/Win Envir.
Skills: Java Coder/Application Programmer (Web-Based Apps), SQL,
Oracle 8i or 9i, STRUTS
Trinity Consultancy Services is seeking applications from qualified
and experienced software engineers with above skills for various
requirements with their Clients.
Job description:
Java Coder/Application Programmer
We are seeking a Java developer to code applications and code Java
Classes from scratch to help in the development of an nth-tier web
application using Java language and associated technologies, in an
Oracle 8i/9i and Windows environment.
Duties and Responsibilities:
* This position requires a strong Java Application coder (3 years).
Ability to code applications from scratch by writing basic Java code
plus the ability to compile Java Applications using Java Servlets,
Applets, JSP's and JavaBeans. Must be able to create JavaBeans from
scratch. Should be able to track down particular Java code lines,
Scripts, JSPs, Beans, Servlets or Applets.
Required Experience:
* At least 3 years hands-on paid software development experience in
design and coding of Web applications.
* At least 3 years in Java and Object-Oriented software development.
* Experienced in Windows Dev.
* Experienced in large-scale, enterprise systems implementation with
through understanding of system development methodology.
* Must have STRUTS experience.
Required Skills:
* Strong computer programming skills in Java coding of Java Classes
and OO Design.
* Strong programming skills in programming with SQL and Oracle 8i/9i
Database.
* Strong programming skills in J2EE technologies, such as JSP, Java
Servlet, Javabean, EJB, JNDI, MVC, and JDBC API.
* Must have STRUTS experience.
* Good working skills in using Http, SSL, JDBC, RMI, XML, JMS.
* Good working skills in using Windows OS (XP, NT, 2000).
* Good interpersonal and communications skills.
Education:
Bachelor degree, CS or equivalent required.
Trinity Consultancy Services is a leading source of Information
Technology, Engineering and Management Experts that corporations of
all sizes turn to, from Global 2000 corporations to mid-sized and
small organizations nationwide. With the commitment to excellence, is
subtly managed to find, recruit, screen, submit and effectively
organize a technical workforce anywhere in the United States for
various Technical needs of corporation irrespective of its size.
Trinity Consultancy Services is one of its unique kind of the leading
information technology consulting services, and business process
outsourcing organizations committed for excellence.
Trinity provides business consulting, systems integration, application
development, staffing services and managed services to Global 2000
Corporations, medium-sized businesses, and government organizations
throughout the United States.
Trinity can mobilize the right resources, skills and technologies to
enable our clients to reach their dreams by enhanced performance. With
deep industry and business process expertise and broad global
resources, Trinity Consultancy Services is committed for excellence.
Please contact our Human Resource Manager Ms. Ann and send your
detailed Resume with your work authorization status, current salary
and expectations.
Mention the position you are applying in the subject line.
Email: email***@***.com
www.trinityconsultancy.com
- 3
- Hibernate and Eclipse -- where to start?Hi folks,
This began as a thread in comp.lang.java.programmer, but the focus has
really moved toward db stuff, so I repost bits here. For the full
thread, see "searching for yoda - a developer's tale" at:
http://groups-beta.google.com/group/comp.lang.java.programmer/browse_frm/thread/aa12c688b702cc72/f769b8aebe720db5?_done=%2Fgroup%2Fcomp.lang.java.programmer%2Fthreads%3Fstart%3D0%26order%3Drecent%26&_doneTitle=Back&&d#f769b8aebe720db5
[...] how to fit Hibernate into Eclipse. Again, my problem statement
is that I naturally work with objects and object graphs and would
prefer to spend most of my development effort in this domain. I would
like as much as possible to have mapping and schema handled by the
tool. It *seems* to me that the "natural" mode for Hibernate is to
start with the mapping and use the tools to generate Java and schema.
This is still better than starting with a relational model.
The learning required for these technologies is what I'm confused
about. What exactly do I need to learn? I have a couple of Hibernate
books (the "in Action" is one of them and is, so far, quite good). The
API seems reasonable and not too intimidating. If I were still a
vi/JDBC coder, I would simply add Hibernate API as a tool and
incrementally move forward. But, now that I'm a full-fledged Eclipse
user and committed to focusing on the object model, I'd like to (1)
integrate Hibernate into Eclipse (via any of the afore-mentioned
plug-ins or others), and (2) try to work from the object side of ORM.
Online docs for the plug-ins to solve (1) seem weak. It's hard to tell
which plug-in does what, and what the advantages/disadvantages of each
might be. (2) seems to imply, from my reading, a need for XDoclet or
some other Attribute-Oriented solution to bury the necessary hibernate
tags into the code. Once again, the docs I've found seem weak. More to
the point, as I've mentioned, each new link leads to five others and
their associated technology requirements...It just gets out of hand
quickly. My hope is for someone here to point the way through the fog
and say "here's how to integrate Hibernate" or perhaps "don't bother
integrating Hibernate, use this basic config file and modify as
needed", etc.
Any guidance would be greatly appreciated.
-don.
- 4
- CFP Reminder: World Congress on Engineering and Computer Science (WCECS 2007)Call for Papers Reminder: World Congress on Engineering and Computer
Science (WCECS 2007)
From: International Association of Engineers (IAENG)
World Congress on Engineering and Computer Science 2007
San Francisco, USA, 24-26 October, 2007
http://www.iaeng.org/WCECS2007
The WCECS 2007 is organized by the International Association of
Engineers (IAENG), a non-profit international association for the
engineers and the computer scientists. The conference has the focus on
the frontier topics in the theoretical and applied engineering and
computer science subjects. Our last IAENG conference has attracted
more than one thousand participants from over 30 countries, and our
IAENG conference committees have been formed with over two hundred
committee members who are mainly research center heads, faculty deans,
department heads, professors, and research scientists from over 20
countries.
WCECS Congress Co-chairs
Prof. Craig Douglas (WCECS Keynote Speaker & Co-chair)
Professor of Computer Science & Professor of Mechanical Engineering,
University of Kentucky
Senior Research Scientist (corresponding to nonteaching full
professor)
Computer Science Department, Yale University, USA
Prof. Warren S. Grundfest, Fellow, AIMBE, SPIE (WCECS co-chair)
Co-Chair, Biomedical Engineering IDP
Professor of Electrical Engineering and Professor of Surgery
The Henry Samueli School of Engineering & Applied Science
University of California, Los Angeles, USA
Former Chair, SPIE Health Care Engineering & Technology Policy
Former Vice Chair, Health Care Engineering Policy Committee, IEEE
Prof. Lee Schruben, Ph.D. Yale (WCECS & ICMSC co-chair)
Professor and Former Department Chairman
Department of Industrial Engineering and Operations Research
University of California, Berkeley, USA
Prof. Jon Burgstone (ICIMT honorary co-chair)
Faculty Chair
Center for Entrepreneurship & Technology
College of Engineering
University of California, Berkeley, USA
Board Member of the Rock Center for Entrepreneurship at Harvard
Business School, Harvard University
Prof. Su-Shing Chen, Fellow, SPIE (ICCB honorary co-chair)
Emeritus Professor, Department of Computer Information Science &
Engineering, University of Florida, USA;
Principal Investigator of Systems Biology Laboratory,
CAS-MPG Partner Institute for Computational Biology (PICB);
Shanghai Institutes for Biological Sciences; Chinese Academy of
Sciences
Prof. Benjamin Friedlander, FIEEE (ICCST honorary co-chair)
Professor of Electrical Engineering
Department of Electrical Engineering, Jack Baskin School of
Engineering,
University of California, Santa Cruz, USA
The IEEE Third Millennium Medal (2000)
Former Vice Chairman of the Bay Area Chapter of the Acoustics, Speech
and Signal Processing Society
Former Associate Editor of the IEEE Transaction on Automatic Control
Prof. Burghard B. Rieger (ICMLDA honorary co-chair)
Professor of Computational Linguistics
Former Dean (1999-2001) of Faculty of Languages and Literature
Former Head of Department of Linguistic Computing, University of
Trier, Germany
President (1989-93) of the German Society for Linguistic Computing
(GLDV)
Vice-President (1990-94) of the International Society for Terminoly
and Knowledge Engineering (GTW)
Prof. Lei Xu (ICSCA honorary co-chair)
IEEE Fellow and IAPR Fellow,
Member of European Academy of Sciences,
Chair Professor, Department of Computer Science and Engineering,
The Chinese University of Hong Kong, Hong Kong
The conference proceedings will be published by IAENG (ISBN:
978-988-98671-6-4) in hardcopy. The full-text congress proceeding will
be indexed in major database indexes so that it can be assessed
easily. The accepted papers will also be considered for publication in
the special issues of the journal Engineering Letters and other IAENG
journals. Revised and expanded version of the selected papers may also
be included as book chapters in the standalone edited books under the
framework of cooperation between IAENG and Springer. Dr. Mark de
Jongh, Senior Publishing Editor, Springer SBM NL, will also give a
presentation about book publishing with Springer. Dr. Mark de Jongh
will also be available during the conference period to talk to
potential authors whom may have a new book idea/proposal.
The WCECS 2007 is composed of the following 15 conferences (all will
be held at the same location and date):
ICCB'07
International Conference on Computational Biology 2007
ICCE'07
International Conference on Chemical Engineering 2007
ICCS'07
International Conference on Circuits and Systems 2007
ICCSA'07
International Conference on Computer Science and Applications 2007
ICCST'07
International Conference on Communications Systems and Technologies
2007
ICEEA'07
International Conference on Electrical Engineering and Applications
2007
ICEIT'07
International Conference on Education and Information Technology 2007
ICIAR'07
International Conference on Intelligent Automation and Robotics 2007
ICIMT'07
International Conference on Internet and Multimedia Technologies 2007
ICMHA'07
International Conference in Modeling Health Advances 2007
ICMLDA'07
International Conference on Machine Learning and Data Analysis 2007
ICMSC'07
International Conference on Modeling, Simulation and Control 2007
ICSCA'07
International Conference on Soft Computing and Applications 2007
ICSEEM'07
International Conference on Systems Engineering and Engineering
Management 2007
ICSPIE'07
International Conference on Signal Processing and Imaging Engineering
2007
=========
Submission:
WCECS 2007 is now accepting manuscript submissions. Prospective
authors are invited to submit their draft paper in full paper (any
appropriate style) to WCECS{at}iaeng.org by 6 July, 2007. The
submitted file can be in MS Word format, PS format, or PDF formats.
The first page of the draft paper should include:
(1) Title of the paper;
(2) Name, affiliation and e-mail address for each author;
(3) A maximum of 5 keywords of the paper.
Also, the name of the conference that the paper is being submitted to
should be stated in the email.
=============
Important Dates:
Draft Paper Submission Deadline: 6 July, 2007
Camera-Ready Papers Due & Registration Deadline: 30 July, 2007
WCECS 2007: 24-26 October, 2007
It is our target that the reviewing process and the result
notification for each submitted manuscript can be completed within one
month from its submission. The reviewing process is to ensure the
quality of the accepted papers in the WCE congress. The conferences
have enjoyed high reputation among many research colleagues ( for
example, see the http://cs.conference-ranking.net/ or http://www.conference-ranking.com/
or http://www.conference-ranking.org/cs.html ).
More details about the WCECS 2007 can be found at:
http://www.iaeng.org/WCECS2007/index.html
http://www.iaeng.com/WCECS2007/index.html
http://www.iaeng.net/WCECS2007/index.html
More details about the International Association of Engineers, and the
IAENG International Journal of Computer Science, and the IAENG
International Journal of Applied Mathematics can be found at:
http://www.iaeng.org/about_IAENG.html
http://www.iaeng.org/IJCS/index.html
http://www.iaeng.org/IJAM/index.html
The official journal web site of Engineering Letters at:
http://www.engineeringletters.com
Other Engineering Letters web sites at:
http://www.engineeringletters.com
http://www.engineeringletters.net
http://www.engineeringletters.org
http://www.engineeringletter.com
http://www.engineerletters.com
http://www.engineerletter.com
********
It will be highly appreciated if you can circulate these calls for
papers to your colleagues.
- 5
- Trusting ceritificates where CN does not match website hostnameJDK 1.4.2_08
I am getting the following exception:
javax.net.ssl.SSLHandshakeException:
sun.security.validator.ValidatorException: No trusted certificate found
at com.sun.net.ssl.internal.ssl.BaseSSLSocketImpl.a(DashoA12275)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA12275)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA12275)
at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA12275)
at com.sun.net.ssl.internal.ssl.SunJSSE_az.a(DashoA12275)
at com.sun.net.ssl.internal.ssl.SunJSSE_ax.a(DashoA12275)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.a(DashoA12275)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.j(DashoA12275)
at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(DashoA12275)
at
org.apache.axis.components.net.JSSESocketFactory.create(JSSESocketFactory.java:224)
I have imported the certificate into the cacerts file via keytool -import.
However, my problem is that, the operator has setup a development and
production website, where the hostname naturally differs ... but both
development and production URLs have the same certificate.
That is, the production, Verisign-signed server certificate is the same
certificate on the development website. This ceritificate, therefore, has
the common-name ( CN ) set to the hostname of the production website.
Thus, even if I import the certificate into the cacerts file, because the
server certificate' CN does not match hostname of the website, I get the
exception above when connecting to their development website.
Apart from implementing DummyTrustManager as per this article:
http://www.javaworld.com/javatips/jw-javatip115.html
... which I'd rather not, is there any other workaround ??
- 6
- Extending the code
I have the following code but i want to add a function which will allow
me to count the number of vowels in the text file. I was wondering if
anyone would be willing to give me some help with this
[CODE]
import java.io.*;
import java.util.*;
public class App {
//Create BufferedReader class instance
public static InputStreamReader input = new
InputStreamReader(System.in);
public static BufferedReader keyboardInput = new BufferedReader
(input);
public static void main(String[] args) {
int[] lengths = new int[100]; //Runtime error if the file contains a
word of more than 100 characters
int longestWord = 0;
for(int i = 0; i < lengths.length; i++) {
lengths[i] = 0;
}
try {
System.out.println("Enter the name of the file you wish to read:
");
String fileName = keyboardInput.readLine();
FileReader file = new FileReader(new File(fileName));
BufferedReader myFile = new BufferedReader(file);
int numTokens = 0;
int numWords = 0;
int numChar= 0;
String line;
while ((line = myFile.readLine()) != null ) {
String[] words = line.split(" ");
numWords = numWords + words.length;
for (int i = 0; i < words.length;i++) {
numChar = numChar + words[i].length();
if(words[i].length() > longestWord) {
longestWord = words[i].length();
}
lengths[words[i].length()] = lengths[words[i].length()] + 1;
}
}
System.out.println("\nThere are " + numWords + " words in the text
file");
System.out.println("\nThere are " + numChar + " characters in the
text file");
System.out.println("\nThere length frequency of the words is as
follows:");
System.out.println("\nLength : Frequency ");
for(int i = 0; i <= longestWord; i++) { //Print frequencies only up
to the longest word
System.out.println(i + " :"+lengths[i]);
}
myFile.close();
}
catch(IOException iO) {
iO.printStackTrace();
}
}
}
[/CODE]
- 7
- JSP vs XSLT?Which is better JSP or XSLT? I prefer JSP for two reasons performance
and less complicated to learn.
JSPs are compiled one time, then cached, unless the code changes. This
not the case with XSLT, as I understand it.
XSLT is very complicated to learn, in my opinion.
See this article by IBM on JSP vs XSLT:
http://www-106.ibm.com/developerworks/websphere/techjournal/0405_brown/0405_brown.html#sec9
- 8
- Image Processing Problem. Need HelpHello, I am writing a web application with Java. There is a function that
user can upload a picture to server, and the server will resize it. I am
using the Java API to do this function. However, the result is not very
satisfactory. The resized image quanlity is very bad.
Can anyone reccommend that any way or tool can resize image with good
quality?
Please help. My boss needs me to complete this project this week.
Regards,
Chris
- 9
- what i do wrong???Hello All!
I think I have a mistake in my logical sequence of thoughts...
When I want to take influence on my JComponents (JTextField,
JCheckBox, etc.),
do I have to place a listener within the constructor???
My problem was the following. I wanted to get the values from my
different JTextFields an write them to any *.txt file. That did only
work, when I inserted a KeyListener who registered any changes in the
text fields. But my real problem is now, to get the values back from
the *.txt file an set them with setText(String) in the text fields.
This don't work.
I have seen in the NG, that there will be oft spoken about
revalidate() or repaint(), but that don't work anyway.
It does not matter, what I want to do - set a component enabled, or
disabled or what ever, I have to have an adequate listener within the
constructor so that the changes will be visible, isn't it that way???
For example:
public void any_method()
{
myTextfield.setEnabled(false);
}
// IT DON'T WORK
// ...but I don't know why. When I put it within the constructor, it
works...
I don't know what to to. I know it from MFC, there I could get
influence on my components in any method.
I don't know what I do wrong in Java.
(My program is an application with JFrame and SWING componets. I use
JTabbedPane and for each tab a Jpanel)
There must be a simple solution for my problem (I hope so).
Please led me out from this dead-end street.
Thanks in advance
Dariusz
- 10
- Creating HTML files from Java accessing OracleHello folks,
I have some queries that folks would like to have as HTML reports. At
first I tried Oracle Reports but it's HTML output seems really poor
and not 508 compliant which is an issue for us. I'd like to use JAVA
(I use Jdev as my IDE right now.) but was hoping someone might have
some insight on the best way to tackle this. I guess I am looking for
methods that would make things easier rather than just outputting
print commands line by line. :)
Thanks folks...
- 11
- Sending XML as a String through a web service (Tomcat/AXIS)?Hi, I have a web service written with Tomcat/AXIS. One of my
methods receives a String. Is it possible to send a String of
XML through this method? Will the XML tags confuse the
underlying web service system? Or will the XML be "escaped"
(with the <, > characters rewritten somehow)?
Thanks.
- 12
- 13
- FW: FreeBSD Upgrade bountycastle-1.16_1 to version 1.25Hi there,
I've emailed the maintainer about this and haven't received a
response in a weeks time. Could someone have a look at this?
Kind regards,
Manfred N. Riem
email***@***.com
http://www.manorrock.org/
-----Original Message-----
From: Manfred N. Riem [mailto:email***@***.com]
Sent: Friday, December 10, 2004 12:07 AM
To: 'email***@***.com'
Cc: 'email***@***.com'
Subject: [FreeBSD Port] Upgrade bountycastle-1.16_1 to version 1.25
Hi there,
A kind request to upgrade bountycastle-1.16 to version 1.25. If you need any
help in doing so, please let me know!
Kind regards,
Manfred N. Riem
email***@***.com
http://www.manorrock.org/
_______________________________________________
email***@***.com mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-java
To unsubscribe, send any mail to "email***@***.com"
- 14
- KENT DOLAN == DUSTY HILL!!! (was: Travelling Salesmen, the Gimpand KPDolan)"JTK" <email***@***.com> wrote:
> dragonfly99 wrote:
>> i saw your webpage. i was impressed.
>> http://www.anycities.com/user/xanthian/TravellerArt/TravellerArt.html
>> Can you lay down more specifics about
>> the structure of your Travelling
>> Salesman and/or random walk
>> algorithms? i'd be much obliged.
See http://www.well.com/user/xanthian/java/TravellerDoc.html ;
sadly that links to a jar file containing a version about
1/3rd the size of the one I'm running now, which contains a lot
more featuritus captured as Java, but is nowhere near ready to
publish. If you want a "warts and all" copy of the current work
in progress, I can send one to you by email.
> OH MY GOD, KENT IS ACTUALLY ZZ TOP
> BASSIST DUSTY HILL!!!!!:
Funny you should say that. When I was
courting my current wife, she showed the
secretaries working for her a picture of
me, with an earlier incarnation of the
same beard (this was 1991) , and to a
one they responded: "You're marrying ZZ
Top!?!" I was a lot cuter then.
> http://www.lowpft.com/dustwed2.jpg
> http://www.anycities.com/user/xanthian/KentImages/KentByTreeHeadAndShouldersNoFlash.jpg
Posting unworkable URLs doesn't much
help. In anycities rabid insistance
that you get a chance to read one of
their misleading and deceptive "improve
your website" ads, before seeing
anything useful, they disable direct
access to anything that isn't an HTML
file they can corrupt.
To see the above picture thus takes
two steps:
Click here:
http://www.anycities.com/user/xanthian/KentImages/KentImages.html
Then choose the top link "this" to see
the above picture. If you look at some
of the others, you'll notice I've added
a bit of fur.
> TELL ME WITH A STRAIGHT FACE YOU CAN
> TELL THE DIFFERENCE!!!!!!!!
How to tell it's Dusty and not Kent the
man from xanth:
1) Dusty still has a lot of orange color
in the sides of his beard; mine is snow
white except for a score of black hairs
in my moustache.
2) No time in my entire life have I had
a babe like that on my arm, counting two
wives and a daughter all in wedding gowns.
> HE'S BAD, HE'S NATIONWIDE!!!!!!!!!!!!!!!!!!!!!
Worldwide actually, but hardly
admirable.
xanthian, the homelier twin.
--
Posted via Mailgate.ORG Server - http://www.Mailgate.ORG
- 15
- show a form from anotherPlease bear with me as I am pretty new to Java.
I am developing a Java Client application.
I have a frame with a button. When I click on the button, it hides the
current frame and opens another frame which is in another class.
When I click on a button on this second frame, I want to close it
(this.dispose) and show the first frame.
The question I have is:
From the second class frame, how do I reference the first frame?
I don't want to close the first frame as I want to keep any data entered.
TS
|
|
|