Search Results

Showing results 1 to 40 of 164
Search took 0.01 seconds.
Search: Posts Made By: orko
Forum: Java Nov 21st, 2008
Replies: 5
Views: 2,077
Posted By orko
read documentation on System.out.println()
Forum: Java Oct 29th, 2008
Replies: 4
Views: 1,990
Posted By orko
I will assume Alrevolver and rana84 are the same person. I will just ask did you understand what s.o.s. just have told? :-| Read his post again and again and try to make sense. Your answer is already...
Forum: Java Oct 27th, 2008
Replies: 3
Views: 386
Posted By orko
You also can use try catch to use your exceptions. See following example:

public int SomMethod() {
try {
//Your codes
}
catch (MyException e) {
//do whatever you wanted to do.
}
}
Forum: Java Oct 26th, 2008
Replies: 30
Views: 1,876
Posted By orko
This topic and the person who started it are retarded! Any moderator, attention please!
Forum: Java Oct 24th, 2008
Replies: 10
Views: 809
Posted By orko
You DON'T suck at all! You are doing pretty good comparing to a lot of other new bies. I also didn't know about replace function for String that it replaces all characters, another work around would...
Forum: Java Oct 24th, 2008
Replies: 10
Views: 809
Posted By orko
So the characters are not getting replaced. Read the API specification for String and StringBuffer. You will get it. I did not compile the code I have given you; idea was to show you how to do it,...
Forum: Java Oct 23rd, 2008
Replies: 10
Views: 809
Posted By orko
You got two variables "puntje[type: String]" and "puntjes[type:StringBuffer]".
Here in your last code I don't see any where you used "puntje". There are few other silly stuffs. Like you are already...
Forum: Java Oct 23rd, 2008
Replies: 10
Views: 809
Posted By orko
Hey! You got me wrong. I didn't delete anything. I just moved the following line:

String puntje = ".";

You also have to use replace function instead of append. It should be like this:

String...
Forum: Java Oct 23rd, 2008
Replies: 4
Views: 520
Posted By orko
On the first post you said you have already stored your data in database, now you are saying you want to store your data in UTF (which means you didn't store anything anywhere). It appears to me you...
Forum: Java Oct 23rd, 2008
Replies: 10
Views: 809
Posted By orko
This is happening because of you are initializing puntje inside the while loop. So every time it loops, it creates new object called puntje; which necessarily doesn't remember the old values. Your...
Forum: Java Oct 23rd, 2008
Replies: 8
Views: 1,944
Posted By orko
Easiest way to use jsp and make sure the server supports jsp. Then in form tag, <form action="mail.jsp" method= post>
Check http://www.jsptut.com/Forms.jsp for details.
Forum: Java Oct 23rd, 2008
Replies: 2
Views: 1,215
Posted By orko
Or join to any of the online programming website ACM is hosting. You won't find the solution for most of the problems, but there are a lot of hints and helps available. Plus, they have a huge...
Forum: Java Oct 23rd, 2008
Replies: 4
Views: 525
Posted By orko
I think he is scared to show the code. Poor guy!
Forum: Perl Oct 22nd, 2008
Replies: 2
Views: 697
Posted By orko
If you want to start, I will recommend you to start with your linux box then move to your windows (as you already have a linux machine). Life will be a lot easier. There is an easyeclipse available...
Forum: Java Oct 22nd, 2008
Replies: 5
Views: 942
Posted By orko
There can be a java application that reads any kind of file and count the frequency of any given word in it. BUT, when the application is given that "any" kind of file, that application has to...
Forum: Java Oct 22nd, 2008
Replies: 7
Views: 2,944
Posted By orko
Your nick is IMtheBESTatJAVA and you are telling us you are just beginner? Good sarcasm. References are complicated sometimes, but most of the cases it appears to be complicated because of lack of...
Forum: Java Oct 22nd, 2008
Replies: 4
Views: 520
Posted By orko
Tell us more. Are you reading the data? What are getting as your data? This can be taken care in Database [Depending on how you are using it] or you can get the data and convert into arabic. Show us...
Forum: Java Oct 22nd, 2008
Replies: 16
Views: 4,447
Posted By orko
I don't know the exact solution. I may try once I go home. Just few suggestions:
1. Since Java 1.5 a new class ProcessBuilder has been introduced to replace exec(). So might be a good idea to try...
Forum: Java Oct 22nd, 2008
Replies: 30
Views: 1,876
Posted By orko
Btw, do you know how to run a java program?
Forum: Java Mar 22nd, 2008
Replies: 3
Views: 678
Posted By orko
It should be database specific problem.
Forum: Java Mar 22nd, 2008
Replies: 6
Views: 680
Posted By orko
Make sure your Java classpath is set properly in windows environment variables.
Forum: Java Mar 22nd, 2008
Replies: 1
Views: 509
Posted By orko
java.net would be first place to begin with. Start spending time with Java for Networking type of stuffs. It shouldn't be too difficult.
Forum: Java Mar 20th, 2008
Replies: 4
Views: 522
Posted By orko
Why? Don't you go to class?
Forum: Java Mar 8th, 2008
Replies: 5
Views: 588
Posted By orko
It is not very difficult. Just start reading some tutorial. One thing, if you want to use JAVA for plotting and graphing only, I don't think it will be a good idea. MATLAB or Maple or similar...
Forum: Java Mar 8th, 2008
Replies: 5
Views: 588
Posted By orko
Are you familiar with any of AWT or Swing?
Forum: HTML and CSS Mar 7th, 2008
Replies: 16
Views: 1,587
Posted By orko
Plarsen, if you don't know what you are doing here, then I think you won't be able to solve it very easily. You may go to this mootabs (www.silverscripting.com/mootabs/)site, and use their easy to...
Forum: Java Mar 7th, 2008
Replies: 7
Views: 1,434
Posted By orko
If I am not wrong, I think you are trying to get the value for a specific object. In that case, static method is not your solution. You should not use static methods at any case but some particular...
Forum: Java Mar 7th, 2008
Replies: 7
Views: 1,434
Posted By orko
In addition to what Ezzaral said, in any good IDE or editor you should be able to get a list of static methods as long as you just type in the class name.
Your return thing.class.getNumber(); //...
Forum: Java Mar 6th, 2008
Replies: 5
Views: 636
Posted By orko
So you mean you are using MS SQL Server. I am not very familiar with MS SQL Server, but it should have some kind of user management tool, through which you can set the privileges of your users. You...
Forum: Java Mar 6th, 2008
Replies: 8
Views: 10,540
Posted By orko
Sure, from now on attend the lectures, listen to your prof carefully and do some practice. For now, start with a for dummies type book to figure out what to do. Once you figure out, start coding, and...
Forum: PHP Mar 5th, 2008
Replies: 6
Views: 2,230
Posted By orko
That is bit challenging. But once you are done, you will love your life :P... Try this llink (http://www.plog4u.org/index.php/Using_PHPEclipse_:_Installation_:_Installing_the_DBG_Debugger)
Forum: Java Mar 5th, 2008
Replies: 6
Views: 1,849
Posted By orko
I got few pms regarding this topic. As I feel better in group discussion I am ignoring those messages.
Those who wanted to know how the hacker can know the write class or package name, to them, if...
Forum: Java Mar 5th, 2008
Replies: 7
Views: 1,489
Posted By orko
Then why don't you just write a batch or shell script?
Forum: Java Mar 5th, 2008
Replies: 1
Views: 435
Posted By orko
Is your client having this problem only with your software? Because the client may need to have the font installed or the Install Files for complex script ... thing enabled if it is windows. Check...
Forum: Java Mar 5th, 2008
Replies: 8
Views: 639
Posted By orko
won't it be like following:
private String update(Student aStudent)
What is you object type in the input Student or aStudent?
Forum: Java Mar 4th, 2008
Replies: 3
Views: 2,845
Posted By orko
It is not encouraged to post such straight forward solution here. This forum definitely discourage the "copy-paste" manner.
Forum: Java Mar 4th, 2008
Replies: 4
Views: 795
Posted By orko
The question of algorithm comes after you figure out the problem. Appears to me you don't know what the problem is.
Forum: Java Mar 4th, 2008
Replies: 3
Views: 1,196
Posted By orko
I think your are confusing between JSP and JavaScript. With JSP can you do tabs? Answer is NO! With JavaScript, yes you can. If you don't know about JSP, I will suggest you to learn them step by...
Forum: Java Mar 4th, 2008
Replies: 8
Views: 2,973
Posted By orko
I will say most of the users know how to install JRE. One solution can be instead of installing it twice, ask the user if has already installed JAVA, or do some kind of testing to see if JRE is...
Forum: Java Mar 4th, 2008
Replies: 8
Views: 639
Posted By orko
Which one is your line 46?
Showing results 1 to 40 of 164

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC