- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
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 … | |
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 … | |
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... | |
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? | |
Re: Just hang on for a while. Our moderator will code for you in no time. | |
Re: [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 | |
Re: [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. … | |
Re: 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. | |
Re: [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 … | |
Re: 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. | |
Re: [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 … | |
Re: [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 … | |
Re: [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 … | |
Re: 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. | |
Re: [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. | |
Re: 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 … |