nek thomas

Greenhorn
+ Follow
since Oct 18, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by nek thomas

Can we integrate that with java project? Can you show demo sample code for cucumber
Yes , some sample code which are easy to implement and understand via eclipse
Do you know any implementation of jbehave which is simple? As I have tried one on jbehave website but I am not sure how to implement them via eclipse.
I am having issues with Maven in eclipse. When I try to run mvn install command it gives the following error

unable to locate javac compiler in C:\Program Files\ Java\Jre6\..\lib\tools.jar

I have tried toggling with the installed java for eclipse to jdk...

Please let me know if anyone has faced such issue with maven build in eclipse

12 years ago
Does any one know good implementation of BDD framework like jbehave?
DOes any one know simple implementation of jbehave?
12 years ago
I am also trying to understand use of jbehave? Does any one has simple implementation of jbehave?
i would recommend inorder to avoid such error, you should directly go to the package from windows....and do javac classnane.java



Nek
14 years ago
well you may forget some java for a while, but eventually you will gain from multi directional experience; and I believe once you come back to java with experience, you may have totally different, and better perspective when working on java


Thanks


Nek
14 years ago
hey Sherif

I believe, it is beneficial to expand your profile. This will diversify your skills, and make you more complete professional at work. And, I think there is no harm in learning new skills, as it will enhance your work related skills in different direction.


I hope this helps

Thanks

Nek
14 years ago
Praveen, you might wanna try this....

public static void main(String[] args) {
String s = "65234Markets6713Investments";
StringBuffer sb = new StringBuffer();
int pos = 1;
char[] ch = s.toCharArray();
for (int i = 0; i < ch.length; i++) {

if (Character.isDigit(ch[i])) {
if(pos!=1)
{
pos=1;
sb.append(',');
}
sb.append(ch[i]);

} else {
if (pos == 1) {
sb.append(',');
}
sb.append(ch[i]);
pos++;
}
}
System.out.println(sb.toString());
}




This gives this result

65234,Markets,6713,Investments



Nek
14 years ago
Thanks for your suggestions

I have questions about the use of passing .class as a reference anywhere. And, please give suggestions of usage of .class in java code


15 years ago