Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~14.5K People Reached
Member Avatar for miraj0072004

hey....I have a question...this seems such a trivial question but please help me...I'm trying to use a java variable ex:- int x=request.getParameter(ID) and then use it in an sql query,like, select name,date,tel_no from items where ID=x it doesn't work...im very new to sql and jsp...so please help me get around …

Member Avatar for cliver
0
12K
Member Avatar for miraj0072004

hello friends, I am making a GUI for a certain fill up form using netbeans..here I need disable a "next" button until all the text fields are filled up...I have tried writing a method that which is called during every keypress event in a text box that checks whether the …

Member Avatar for javaAddict
0
252
Member Avatar for miraj0072004

hello friends, I am calling an external _ant_compile.cmd program from my java methods as [CODE] Runtime rt = Runtime.getRuntime(); Process p=rt.exec(thepath);[/CODE] but here, the external program starts, and starts proceeding, but the problem is this launch takes place without any relation to the original class...which means, once after i have …

Member Avatar for masijade
0
117
Member Avatar for miraj0072004

hello friends, this is my attempt to execute an external cmd file through java and get the output printed to a text file while the program is running (not after the program has ended), since I need to do some real time manipulation for depending on the program output. [CODE] …

Member Avatar for NormR1
0
141
Member Avatar for miraj0072004

hello friends, I am running one _ant_compile.cmd through a java program,this is how i have done it, [CODE] File file=new File (path)//path is a parameter passed in Runtime rt=Runtime.getRuntime(); Process pr= rt.exec (" rundll32 SHELL32.DLL,ShellExec_RunDLL " + file.getAbsolutePath());[/CODE] so, as expected the _ant_compile.cmd gets executed, but after it's done before …

Member Avatar for NormR1
-1
128
Member Avatar for miraj0072004

hello friends, how do I simulate an "enter" key press in java? this is to avoid the continuous key pressing during runtime whereas there are so many popups which require an "enter" key press to continue execution

Member Avatar for NormR1
0
351
Member Avatar for miraj0072004

hello friends, I have a file _ant_compile.cmd which i need executed from a java program, here I have two questions to resolve, 1. when I try the method attached in the file, the program launches in the same window, and halts without proceeding but when I use the second method …

Member Avatar for NormR1
0
99
Member Avatar for miraj0072004

hello friends, I have s small problem, say if I declare a variable as String name="miraj"; now i want to use the value of the variable name, that is "miraj" and create a file using that name, which means something like miraj.txt ... how do I do it? The part …

Member Avatar for miraj0072004
0
96
Member Avatar for miraj0072004

Hello friends , I am new to ant tasks.in this custom ant tasks I have tried to implement, there are two classes HelloWorld.java and CmdCompile.java. this is the build.xml I use, [CODE]<?xml version="1.0" ?> <project name="Antcompile" default="main" basedir="."> <!--<description>Builds, tests, and runs the project Antcompile.</description>--> <import file="nbproject/build-impl.xml"/> <taskdef name="hello" classname="just.inside.HelloWorld"/> …

Member Avatar for ~s.o.s~
0
367
Member Avatar for miraj0072004

hello guys, I am trying to add the harvest plugin and do a checkout using that via cruisecontrol, this is how i have written the config.xml file <cruisecontrol> <project name="harvestTest" buildafterfailed="false"> <plugin name="Harvest" classname="net.sourceforge.cruisecontrol.sourcecontrols.AllFusionHarvest" /> <plugin name="harvestbootstrapper" classname="net.sourceforge.cruisecontrol.bootstrappers.AllFusionHarvestBootstrapper" /> <listeners> <currentbuildstatuslistener file="logs/harvestTest/status.txt"/> </listeners> <!-- Bootstrappers are run every time the …

Member Avatar for iceandrews
0
147
Member Avatar for miraj0072004

hey all, i am trying to add a harvest plugin to the config.xml in cruisecontrol...but when I do that i get the error stating that "allfusionharvest.class" is missing...when I checked the classes indeed it was missing...how should I resolve this?

Member Avatar for NormR1
0
66
Member Avatar for miraj0072004

hello friends, This may sound very primitive, but that's no wonder cos I am very new to this. I would like to know how to find out the current operating system that I am using, with shell commands. For example, if I am using ubuntu and fedora , and a …

Member Avatar for thekashyap
0
51
Member Avatar for miraj0072004

hi friends, I need some help in keeping count of particular IP addresses that I read from a text file with ip addresses.i.e let's say 123.456.789.123 - 15 times, 542.432.456.123 - 6 times etc etc ...thanks in advance

Member Avatar for miraj0072004
0
81
Member Avatar for miraj0072004

hey guys, I have a table "items" from which I need to select items using two drop down lists ,the 1 st drop down list works, the second one doesn't fetch the parameter passed, when used item_id=? <sql:param value="${param.item_Id}"/> ?? ,but when I give a value it works..... I'm using …

0
88