- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
35 Posted Topics
Re: I guess Ur class "AOperation" is sitting under sub-directory of "mypack" | |
Re: I guess largest number is what u entered in consol.. In your example largest number is 5. [CODE] Scanner input=new Scanner(System.in); System.out.println( ":Enter number " ); int N = input.nextInt(); System.out.println("Largest number is " + N); [/CODE] | |
Re: Hi, Try this..and let me know ..whether u are looking for same [CODE] public class RegExp { public static void main(String[]args) { String test = "123123213x^213123."; System.out.println("Testing " + test); boolean b = test.matches("^[0-9]*[x][\\^][0-9]*[\\.]"); System.out.println(b); } } [/CODE] | |
Re: Take some complicated calculation like 1) Calculate EMI 2) Calculate Tax 3) Calculate age of person 4) Find difference between any two given dates 5) Store Reminders of a person in a File. and whenever java file executed then read reminders of that person.and display How many days to go.. … | |
Re: [CODE] list.add(Lists.asList(gameDates));//Need help over here[/CODE] instead of this Trying adding a Object For example [CODE]list.add(playerDetails)[/CODE] Here playerDetails is a object of a class PlayerDetails and this should contains [CODE] Class PlayerDetails { String PlayerName; int score; Date lastPlayedDate; .... etc } [/CODE] and create objects like this [CODE] PlayerDetails p1 … | |
Re: Why you want to convert vb.net to Java ? Anyways for java.. Chk this [url]http://www.daniweb.com/software-development/java/threads/99132[/url] | |
Re: Divide big task into smaller chunks 1) Identify the Data 2) Create tables to store that data 3) Create Html pages 4) Create Jsp page to insert ,update and read data from database by doing this you ll get an idea...then proceed with main design | |
Re: Hey dude Let me repharse ur question, Sorry if i understood wrong If log is having aaa.ccc.ddd.eee.Yahoo.com dfsdfsdsdf.gmail.com Then u like to have only yahoo.com gmail.com is this u are looking for ? | |
Hi, I'm using following packages to read and write the excel, But the problem I'm not able to copy the formula from one sheet to other sheet packages are use Spreadsheet::ParseExcel; use Spreadsheet::WriteExcel; Is there any other packages so that I can copy excel fromula to another excel ( I … | |
Re: Hi Kather, Create an account in mysql which does not require SSL that's all Boss | |
Re: If u are running code in Unix Then run two sql quires one for table one > redirect to file1 and for table two > redirect to file2 then do [ICODE]sdiff file1 file2 > file3[/ICODE] grep for lines other than "|" pipe symbol and use cut command | |
Re: Hi, If you are working in Unix then, Use following command <code> cat -n file-name > file_name2 </code> Then use <code> sort -u -k 2,4 file_name2 </code> | |
Re: Hiyya, Yes very much possible. You must be knowing about this symbol ` ` use that in ur perl code. I would suggest create a shell script and call that shell script in ur perl. | |
Re: hiyya, Before doing all this stuff. First step is to do is a) Configure apache Server (Find in google how to do) b) Run few sample example which is bultin in apache server just to confirm whether apache is properly configured c) Use FORM tag in html to run CGI … | |
Re: Hey Dude, I did't got this line [I][COLOR="Green"]what I can't seem to achieve is the value to send [/COLOR][/I] Are u trying to send Big text or somthing? | |
Re: Simple Dude just three line.. B4 running make sure that two Dir ie FileData and CopiedData should be in same directory #!/bin/sh mkdir -p CopiedData cp ./FileData/* ./CopiedData/ | |
Re: Dude can u please reframe ur Doubt Tracing this big code is quite timeconsuming | |
Re: Hi Dude, Before FTPing just convert file from unix to Dos and compress it U can use below command unix2dos file_name file_name Let me know if it works and also can u tell me which command u are using for FTP from unix to windows with example | |
[code]<html> <head> <script type="text/javascript"> function getpr(txt2){ alert("I'm in"); document.write(txt2); } function message() { var doc = new ActiveXObject("Word.Application"); // creates the word object doc.Visible=false; // doesn't display Word window doc.Documents.Open("C:\\Users\\vinay\\Desktop\\HTMLPages\\test\\pr.txt"); // specify path to document //copy the content from my word document and throw it into my variable txt = … | |
Can any one pls help me to know any real time example for Static polymorphism Dynamic polymorphism | |
Re: for(i=0;i<10;i++) { sum=sum+X[i]; } calculate sum first then Average... out of the for loop avg=sum/10.0; | |
Hi, How to convert excel to html in shell prompt Is there any unix command to do this ? so that I can use that in excel Vinay | |
Hi, Please help me in finding out any good and quick ebook on Regular Expression on PERL . Vinay | |
| |
Re: One who stays for only a short time is transient() so if you want any frame to stay for shorter period you can use this function | |
Re: [quote=abhijith;243199]yeah thats right. PHP will be parsed when you access the page through browser using http protocol. iT will not be converted to byte code as does in java or will not get converted into exe as does in c or other languages.[/quote] If I press refresh button after loading … | |
Re: Hi, Please dont use cookie, Lot of problem will occur Cookie is something which we can't handle in client machine. Some client machine will allow us to create cookie and some don't If you really want I have some other solution to keep track of user Vinay | |
What does connection.conv() means? I know that connection.conv() - set type conversion options between MySQL and Python but How to implement this in python Vinay | |
[LEFT]Hi, I am using a sendmail command in perl to send emial , I wonder how to get a message confirmation that mail has been sent to perticular user Vinay [/LEFT] |
The End.