2,443 Posted Topics

Member Avatar for shaun09

[code] String ca1 = request.getParameter("ca1_<%=i%>"); [/code] should this not be [code] String ca1 = request.getParameter("ca1_" + i); [/code] Assuming the parameter names are ca1_0, ca1_1, ca1_2, etc. At this point in the code you are already inside a scriptlet tag (at least I assume you are), so additional scriptlet tags …

Member Avatar for shaun09
0
124
Member Avatar for cute_shivi
Member Avatar for techkar

Google the following one at a time and pick the solution you wish to use: POI JExcel JDBC-ODBC Bridge

Member Avatar for iamthwee
0
132
Member Avatar for jaden403
Member Avatar for jaden403
0
126
Member Avatar for PPaul1

[quote] balance = (balance - monthly_principal); monthly_principal = (monthly_payment - monthly_interest); [/quote] The monthly principal should be determined before it is subtracted from the balance, right? As far as a print statement for paid in full, simply add a print statement after the loop.

Member Avatar for masijade
0
167
Member Avatar for NPatty

By using the x variable pointed out in the first reply. If this is going to become a long-winded thread, then I feel obliged to point out something else that I feel you have not grasped. That is JavaScript != Java. JavaScript and Java are two different things. They have …

Member Avatar for masijade
0
94
Member Avatar for abhishekG

Check out the Tutorials at Sun. Everything you need. However, as of JDK 1.5 those methods are obsolete (although not deprecated) and you should be using the classes from the java.util.concurrency (or concurrent?) package. Make sure to check out that Tuorial as well.

Member Avatar for masijade
0
70
Member Avatar for mikel_2006
Member Avatar for pfr

What error? We cannot play both compiler and JVM here to try and figure out what the error was, and where it is, so please help us out and post the complete error message, preferably with stacktrace.

Member Avatar for masijade
0
109
Member Avatar for EnderX

You said you removed the passphrase, but here you are waiting for the passphrase prompt. Of course it will timeout as this should never come. You should be able to comment out this block of code and the line or lines where you send the password and continue with the …

Member Avatar for masijade
0
138
Member Avatar for Gessa

This was posted yesterday as well. I guess she doesn't like the "help" she was getting there. Which was to repost using code tags and put in a little real effort.

Member Avatar for Gessa
0
82
Member Avatar for MEversbergII

I have never heard of that package, and somehow I doubt that the book spelled it that way, since package names are suppossed to be all lower case. Also, it was never a part of the JRE, since all those packages start with either java, javax, com, sun, or org.

Member Avatar for AlwaysLearning
0
235
Member Avatar for Gessa

How about the following hints/tips: 1) Don't post the same question multiple times. 2) Give it a try. If you have specific questions come back and ask them.

Member Avatar for iwlu
0
178
Member Avatar for THK

Yours: [code] public type method(){ method = method*2; return this.method; } [/code] Correct [code] public int method(int value){ return value * 2; } [/code] Compare Your description said [b]takes an integer argument[/b] [b]returns an integer[/b] [b]returned int is double the parameter[/b] The only thing your method had was the "* …

Member Avatar for masijade
0
387
Member Avatar for j.jennings93

This is a Ja[b]v[/b]a site not a Ja[b]w[/b]a site. It is a forum about a Programming language not an Electrical system of any kind.

Member Avatar for masijade
0
38
Member Avatar for beantowner2

What windows version are you using? I know of no half-way current version of windows that still uses MSJVM. But, is it all applets that do this, or only the ones you have built? Since I still believe that the Java itself is okay, but that it is what the …

Member Avatar for masijade
0
101
Member Avatar for salim
Member Avatar for masijade
0
76
Member Avatar for firoz alam
Member Avatar for vick

You need to seriously inspect your design. The compareDate method is not called anywhere, except from within itself, and then only with two date Strings (a date String is not a Date, just so you know) that are also defined within the method. Were this method ever called from anywhere …

Member Avatar for masijade
0
186
Member Avatar for mahul000

[code] #!/bin/bash wc $* [/code] No seriously, why do you need this? This sounds suspiciously like a homework assignment.

Member Avatar for jim mcnamara
0
133
Member Avatar for h1dden

That's not what he said. Netbeans has a graphical Interface builder, so in order to make the GUI he did not need to know very much Java at all. That's the problem. Now he has to make and use the gui without Netbeans' help, and he's lost.

Member Avatar for masijade
0
120
Member Avatar for beantowner2

We do not support SiteBuilder here. Java, in itself, is okay. The problem is what SiteBuilder does with it. You should ask either Yahoo Support (if there is such a thing) or a Yahoo forum (again if there is such a thing).

Member Avatar for beantowner2
0
67
Member Avatar for rpjanaka

Read up in the Java 5.0/JDK 1.5 New Features Document at Sun. This is the "improved for loop or so-called for each loop".

Member Avatar for fdrage
0
123
Member Avatar for rpjanaka

The ObjectInputStream can only be created using another InputStream of some type. A quick look at the API docu would tell you this. So no, you can't. You could combine it all on one line rather than using itermediate statements, but the work done is the same and is only …

Member Avatar for rpjanaka
0
104
Member Avatar for aG-gal

That's because the perl script is running on the server side, so you simply attemtped to open notepad on the server, rather than the client. If you want to open something on the client, then you need something that is actually executing on the client such as JavaScript, or ActiveX …

Member Avatar for masijade
0
92
Member Avatar for EnderX

The shared library that IO::Tty uses can't be found. If you have a compiler on the computer, your best bet would be to download the IO::Tty module from CPAN and reinstall it (and any others that the module complains that it needs when you try to compile it). If that …

Member Avatar for masijade
0
135
Member Avatar for sudhakarsrl

If these lists are not too long, you would be better off generting a few hidden tags on your form and use pure JavaScript to pull values from the hidden tags to populate your second list. So say your values lists are as follows: [code] 1st List Entry Values for …

Member Avatar for masijade
0
169
Member Avatar for chip1123

So what is your soecific problem? What error are you getting? What effect are you observing that you did not expect?

Member Avatar for chip1123
0
127
Member Avatar for Klitzy

Did you not read jwenting's reply directly above yours? Look in the API for a single method call to reverse a String. I will give a small hint, the class is not String but does begin with it.

Member Avatar for tknows
0
130
Member Avatar for sarath.koiloth

System is a class, using it directly in this manner means you want to use a public static item from it. out is the public static item you are using. It is an OutputStream that is used for the Standard Output (STDOUT, there is another for STDERR) of the running …

Member Avatar for sarath.koiloth
0
88
Member Avatar for mysticcc

Well, you might not be getting an error message, because you have commented out the contents of your catch block, effectively ignoring any errors. Remove the comment symbols in the catch block and try it again in order to check whether or not you actually get any error messages.

Member Avatar for mysticcc
0
135
Member Avatar for kararu

I would suggest searching [url]www.cpan.org[/url] for some memory management module that might provide this functionality. Even if it is possible from straight perl, it is probably complicated or convoluted and a module from CPAN would probably make it a bit simpler to use (or at least let you study it …

Member Avatar for masijade
0
133
Member Avatar for Covinus

My personal opinion is the one you have already mentioned, PerlTk.

Member Avatar for Covinus
0
162
Member Avatar for kararu

I am sorry, but do you even know what you are talking about? C++ is a high level language that needs to be compiled. Once it has been compiled, the resulting output [b]IS[/b] is an exe (or at least a dll).

Member Avatar for kararu
0
70
Member Avatar for kararu

See your other post. I get the feeling that you are in [b]WAY[/b] over your head.

Member Avatar for kararu
0
102
Member Avatar for q8z
Member Avatar for kavya
Member Avatar for msvinaykumar

You probably need to change your sendmail configuration (or whichever mail program you really use) to not automatically send a copy to root. But if this is not your machine, it may be that the administrator has purposely set this up this way, and you then will not be able …

Member Avatar for trickykid
0
186
Member Avatar for sujagr8
Member Avatar for nikhiljoshi92
Member Avatar for masijade
0
163
Member Avatar for selvam.cit

if n.sh doesn't contain anything but functions and variables (i.e. no actual executed code) then add ". <path>/n.sh" to the top of n1.sh. If n.sh is a full functional script, then you cannot do this. If you have common functions that you wish to use over multiple scripts, then place …

Member Avatar for John A
0
214
Member Avatar for V KUMAR
Member Avatar for Silentiopk4
Member Avatar for DoubleShot

This is the Java Server Pages (JSP) page. Note Server in that name. Javascript is a scripting language that runs in the browser on the client and has absolutlely nothing to do with this forum. If you truely want help with a Javascript problem, then find a Javascript forum. If …

Member Avatar for masijade
0
114
Member Avatar for msvinaykumar

No there isn't. The only thing that a cgi would have access to are the attribute headers and (possibly) form paramters. The email address is not contained in the attribute headers (and they cannot be counted on anyway, since the browser can spoof every last one of them). Also, you …

Member Avatar for msvinaykumar
0
114
Member Avatar for haria_kishore
Member Avatar for shapeshifter

Think Scanner and a couple of loops. That's all you need, and from us, for your homework, that is all you will get until you do something yourself.

Member Avatar for Phaelax
0
82
Member Avatar for invokers

[QUOTE=invokers]what is this my friend ??? it has nothing to do with my requirements[/QUOTE] And yes it does have to do with your requirements, since you will not be able to do anything in the network without this package. He is simple not just handing you a finished product that …

Member Avatar for invokers
0
118
Member Avatar for selvam.cit

We will not do your homework You know that you need for loop, that is good. Look at the man page for shell built-ins, pick up a book, or google for the shell you are using and for loop.

Member Avatar for masijade
-1
54
Member Avatar for Embeza

If you are suppossed to be writing one, then write one, and if you have a specific problem, check back with us. If you simply want to find one to use, check with Google, there are more than enough out there.

Member Avatar for MattEvans
0
243

The End.