Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > java calc

Reply
Thread Tools

java calc

 
 
Pradyut Bhattacharya
Guest
Posts: n/a
 
      11-11-2006
Hi,
A java calculator
a jar file in dist_calc.zip
double click in windows, or run java -jar javaapplication7.jar
source files in javaapplication7.zip, unzipped will open as a netbeans
directory

Files here at: -
http://myjavaserver.com/~pradyut/files/java_calc/

reply ur comments n suggestions

--
Pradyut
http://pradyut.tk
http://oop-edge.blogspot.com/
http://pradyutb.blogspot.com/
http://praddy-photos.blogspot.com/
http://oop-edge.spaces.live.com/
http://www.flickr.com/photos/praddy
http://groups.google.com/group/oop_programming
India


 
Reply With Quote
 
 
 
 
Jhair Tocancipa Triana
Guest
Posts: n/a
 
      11-12-2006
Pradyut Bhattacharya writes:

> java -jar javaapplication7.jar


I clicked ">" and following happened...

$ java -jar JavaApplication7.jar
Exception in thread "AWT-EventQueue-0" java.util.NoSuchElementException
at java.util.Vector.lastElement(Vector.java:461)
at javaapplication7.NewJFrame.jButton2MouseClicked(Ne wJFrame.java:141)
at javaapplication7.NewJFrame.access$500(NewJFrame.ja va:16)
at javaapplication7.NewJFrame$6.mouseClicked(NewJFram e.java:82)
at java.awt.AWTEventMulticaster.mouseClicked(AWTEvent Multicaster.java:212)
at java.awt.Component.processMouseEvent(Component.jav a:5491)
at javax.swing.JComponent.processMouseEvent(JComponen t.java:3126)
at java.awt.Component.processEvent(Component.java:525 3)
at java.awt.Container.processEvent(Container.java:196 6)
at java.awt.Component.dispatchEventImpl(Component.jav a:3955)
at java.awt.Container.dispatchEventImpl(Container.jav a:2024)
at java.awt.Component.dispatchEvent(Component.java:38 03)
at java.awt.LightweightDispatcher.retargetMouseEvent( Container.java:4212)
at java.awt.LightweightDispatcher.processMouseEvent(C ontainer.java:3901)
at java.awt.LightweightDispatcher.dispatchEvent(Conta iner.java:3822)
at java.awt.Container.dispatchEventImpl(Container.jav a:2010)
at java.awt.Window.dispatchEventImpl(Window.java:1778 )
at java.awt.Component.dispatchEvent(Component.java:38 03)
at java.awt.EventQueue.dispatchEvent(EventQueue.java: 463)
at java.awt.EventDispatchThread.pumpOneEventForHierar chy(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForHierarch y(EventDispatchThread.java:163)
at java.awt.EventDispatchThread.pumpEvents(EventDispa tchThread.java:157)
at java.awt.EventDispatchThread.pumpEvents(EventDispa tchThread.java:149)
at java.awt.EventDispatchThread.run(EventDispatchThre ad.java:110)

--
-- Jhair
 
Reply With Quote
 
 
 
 
Pradyut
Guest
Posts: n/a
 
      11-13-2006
Jhair Tocancipa Triana wrote:
> Pradyut Bhattacharya writes:
>
> > java -jar javaapplication7.jar

>
> I clicked ">" and following happened...
>


upgrade to the latest jre... then try

> $ java -jar JavaApplication7.jar
> Exception in thread "AWT-EventQueue-0" java.util.NoSuchElementException
> at java.util.Vector.lastElement(Vector.java:461)
> at javaapplication7.NewJFrame.jButton2MouseClicked(Ne wJFrame.java:141)
> at javaapplication7.NewJFrame.access$500(NewJFrame.ja va:16)
> at javaapplication7.NewJFrame$6.mouseClicked(NewJFram e.java:82)
> at java.awt.AWTEventMulticaster.mouseClicked(AWTEvent Multicaster.java:212)
> at java.awt.Component.processMouseEvent(Component.jav a:5491)
> at javax.swing.JComponent.processMouseEvent(JComponen t.java:3126)
> at java.awt.Component.processEvent(Component.java:525 3)
> at java.awt.Container.processEvent(Container.java:196 6)
> at java.awt.Component.dispatchEventImpl(Component.jav a:3955)
> at java.awt.Container.dispatchEventImpl(Container.jav a:2024)
> at java.awt.Component.dispatchEvent(Component.java:38 03)
> at java.awt.LightweightDispatcher.retargetMouseEvent( Container.java:4212)
> at java.awt.LightweightDispatcher.processMouseEvent(C ontainer.java:3901)
> at java.awt.LightweightDispatcher.dispatchEvent(Conta iner.java:3822)
> at java.awt.Container.dispatchEventImpl(Container.jav a:2010)
> at java.awt.Window.dispatchEventImpl(Window.java:1778 )
> at java.awt.Component.dispatchEvent(Component.java:38 03)
> at java.awt.EventQueue.dispatchEvent(EventQueue.java: 463)
> at java.awt.EventDispatchThread.pumpOneEventForHierar chy(EventDispatchThread.java:242)
> at java.awt.EventDispatchThread.pumpEventsForHierarch y(EventDispatchThread.java:163)
> at java.awt.EventDispatchThread.pumpEvents(EventDispa tchThread.java:157)
> at java.awt.EventDispatchThread.pumpEvents(EventDispa tchThread.java:149)
> at java.awt.EventDispatchThread.run(EventDispatchThre ad.java:110)
>
> --
> -- Jhair


 
Reply With Quote
 
Andrew Thompson
Guest
Posts: n/a
 
      11-13-2006
Pradyut wrote:
> Jhair Tocancipa Triana wrote:
> > Pradyut Bhattacharya writes:
> >
> > > java -jar javaapplication7.jar

> >
> > I clicked ">" and following happened...

>
> upgrade to the latest jre... then try


I took one look at your original link and thought
'should suggest web-start' before surfing straight
out of there.

Now that you are making suggestions to your
potential end-users, and the people who were kind
enough to actually download and try the application
(of which, I wasn't), I will suggest..

'web-start'
- could forewarn the end user the minimum Java version
required (and prompt for download).
- sandbox this calculator (so it cannot do anything
harmful to the user's computer).

But while we are on the subject of minimum Java version,
a quick perusal of your GUI* did not suggest it requires
a high level of Java (I would guess Java 1.2) - what is in
your code that sets the minimum Java version? Generics?

* http://myjavaserver.com/~pradyut/fil.../java_calc.JPG
BTW - the screenshot was a nice touch - good work.

Andrew T.

 
Reply With Quote
 
Pradyut
Guest
Posts: n/a
 
      11-13-2006

Andrew Thompson wrote:
> Pradyut wrote:
> > Jhair Tocancipa Triana wrote:
> > > Pradyut Bhattacharya writes:
> > >
> > > > java -jar javaapplication7.jar
> > >
> > > I clicked ">" and following happened...

> >
> > upgrade to the latest jre... then try

>
> I took one look at your original link and thought
> 'should suggest web-start' before surfing straight
> out of there.
>
> Now that you are making suggestions to your
> potential end-users, and the people who were kind
> enough to actually download and try the application
> (of which, I wasn't), I will suggest..
>


you didn't try the app...
why are you kind enough to waste your replying to this thread...

> 'web-start'
> - could forewarn the end user the minimum Java version
> required (and prompt for download).
> - sandbox this calculator (so it cannot do anything
> harmful to the user's computer).
>
> But while we are on the subject of minimum Java version,
> a quick perusal of your GUI* did not suggest it requires
> a high level of Java (I would guess Java 1.2) - what is in
> your code that sets the minimum Java version? Generics?
>


As from the exceptions raised... it seems that there was a exception in
Vector class.
java.util.NoSuchElementFound exception...

> * http://myjavaserver.com/~pradyut/fil.../java_calc.JPG
> BTW - the screenshot was a nice touch - good work.


Thanks...
>
> Andrew T.


 
Reply With Quote
 
Lew
Guest
Posts: n/a
 
      11-13-2006
> Andrew Thompson wrote:
>> But while we are on the subject of minimum Java version,
>> a quick perusal of your GUI* did not suggest it requires
>> a high level of Java (I would guess Java 1.2) - what is in
>> your code that sets the minimum Java version? Generics?


This is a good question. What is the answer?

Pradyut wrote:
> As from the exceptions raised... it seems that there was a exception in
> Vector class.
> java.util.NoSuchElementFound exception...

NoSuchExceptionFound.

Do you mean java.util.NoSuchElementException?

Have you read
http://java.sun.com/j2se/1.4.2/docs/...xception.html?

Under what circumstances does your code attempt to call
Enumeration.nextElement() after there are no more elements in the enumeration?

Would ArrayList and Iterator perhaps suit your algorithm better than Vector
and Enumeration?

- Lew
 
Reply With Quote
 
Andrew Thompson
Guest
Posts: n/a
 
      11-14-2006
Pradyut wrote:
....
> you didn't try the app...
> why are you kind enough to waste your replying to this thread...
>
> > 'web-start'


Perhaps because more people (such as myself) might click
a link pointing to a sand-boxed web start application, which
is less effort than downloading, compiling and running code,
and a lot safer than running a jar from 'some guy on usenet'.

But then ..I do wonder why I am bothering to justify my
interest to you, since it (my interest) is fading quickly..

Andrew T.

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
ruby calc.rb or just calc.rb Kaye Ng Ruby 7 07-28-2010 05:21 AM
CCITT CRC X1021 parallel calc Niv VHDL 7 05-22-2009 12:02 AM
Word, Word Perfect, Excel, Calc, And Some Others Load Fonts, Printer Properties, and Setup Slow. Jerry G. Computer Support 2 03-05-2005 10:13 PM
Please recommend component which I can use for shipping calc Tat ASP .Net 0 10-10-2004 01:48 AM
OpenOffice Products-Writer,Calc,Impress,Draw Sharon Russell Computer Support 8 09-06-2004 04:56 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57