Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
67% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #2K
~4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for axeeffect2002

Hi, I am trying to log a portion of the log file depending upon the "WorkOrderNumber" and "level". The shell script i've written is as follows:- [CODE]cat input.log | awk '/\[WorkOrderNumber/' | awk /120600012/ | awk /INFO/ | tee log.vw[/CODE] For a particular WorkOrderNumber, the record is very long (4253 …

Member Avatar for axeeffect2002
-1
406
Member Avatar for axeeffect2002

Hi, I have written a sql script which takes the rows from a table and writes it to a .csv file. The script is as follows:- [CODE] set feedback off; spool output.csv; set heading off; SELECT username||','||profession from users; spool off; [/CODE] This works fine but output.csv contains a blank …

Member Avatar for babyDBA
0
1K
Member Avatar for axeeffect2002

Hi, Just now I've downloaded jython plugin for eclipse through software updates. Now when I try to create a jython project it cries for configuring an interpreter. I don't know what path should I provide. please help...

Member Avatar for Stefano Mtangoo
0
52
Member Avatar for axeeffect2002

Hi, I want to develop a desktop application in which I want to render different views on button click. What should I use to achieve this? I thought of going for Swing but I don't have much idea about it. Can we show different views in Swing on button click?

Member Avatar for axeeffect2002
0
69
Member Avatar for bervin
Member Avatar for TheWhite
0
161
Member Avatar for Dhrubajit Kalit

[QUOTE=Dhrubajit Kalit;933266]Thanx for response, please write the program in core java.[/QUOTE] Wish I could read VernonDozier's comment on this. :D

Member Avatar for axeeffect2002
0
85
Member Avatar for majestic0110

[QUOTE=majestic0110;931487]Hi all, I hope you are well. I am trying to explain some code to a friend : [CODE]StringConcatenate StringConcatenate1 = new StringConcatenate(); StringConcatenate1.stringConcat(); [/CODE] I said that this code creates an object "StringConcatenate1 " of type StringConcatenate and executes method stringConcat() (which is from class StringConcatenate()) on object StringConcatenate1. …

Member Avatar for majestic0110
0
201
Member Avatar for ryy705

do you've org.apache.commons.net.ftp.FTPClient jar in your classpath? PS: what IDE are you using? Download commons-net-1.4.1.jar file and put it in your classpath. Your compiler will stop crying. I am using eclipse and here i am able to compile the same code smoothly.

Member Avatar for ryy705
0
259
Member Avatar for anumitadas

[QUOTE=anumitadas;929150]Plz Help me to print in [B]java [/B] a b a b c b a b c d c b a b c d c b a b c b a b a[/QUOTE] [code] public class Pattern { /** * @param args */ public static void main(String[] args) { for(char …

Member Avatar for VernonDozier
0
308
Member Avatar for MonicaClare

Are you sure that whatever you've written is a java code? :) kidding. I can see a lot of compilation issues in your code. Check the first for loop. it sould be for(int a=o;...). Please indent the code properly so that it becomes readable for we humans.

Member Avatar for puneet88
0
184
Member Avatar for akulkarni

[QUOTE=akulkarni;928037]i wish to add another column using code in JDBC.I have one column columnname i wish to add a text type(data type in access) column in the access file my code is [code] import java.sql.*; public class Test3 { public static void main(String[] args) { try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); /* the …

Member Avatar for akulkarni
0
153
Member Avatar for knowledgelover

[QUOTE=knowledgelover;925908]hi there, I am trying to learn how to generate xml document having the XSD file that describes the schema of the xml, and need to insert specific values for some of the elements, too. then I need to parse other xml files, I have googled about it, and many …

Member Avatar for varunnanda
0
132
Member Avatar for spalax

[QUOTE=spalax;926266]Hi everyone, i'm a beginner in java. i would like to know if somebody couls explain me about the pricing. i don't have more details, it is used for airplane ticket reservation. Or any java project, i would like to test my capacity before searching for job. Thank you very …

Member Avatar for peter_budo
0
83
Member Avatar for loozax

I am not very much clear what you're trying to ask. Whose difference and product you want to find out. It would be good if you explain what your requirement is in more detail.

Member Avatar for mvmalderen
0
93
Member Avatar for Dragonfyre

[QUOTE=Dragonfyre;924977] is there some form of "Next J" function call that will move to the next loop iteration? Regards, Dragonfyre As an FYI "count" is the length of "chrs."[/QUOTE] try using continue.

Member Avatar for Dragonfyre
0
126
Member Avatar for Clawsy

Hey you've written this method public void app() { initialize(); } thinking that it's a constructor. haven't you? Well constructor doesn't have any return type,not even void. So in this case it's not a constructor but a normal java method. So if you want to run your application,either remove void …

Member Avatar for axeeffect2002
0
143