srikanth venkat

Greenhorn
+ Follow
since May 27, 2005
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 srikanth venkat

hi all,
in GE energy iam joining as a webapplication developer and in Cordys(www.cordys.com) my Domain is Webservices,SOA etc.. . so please any one suggest me, which company is better for me.

thanks and regards,

SV
17 years ago
hi all,
i have nearly 2 years of experence in Java/AJAX/XML etc..
recently i got offers in GE energy and Cordys(www.cordys.com)
so please any one suggest me, which company is better for me.
iam more concern about technolgies and work environment.

thanks and regards,

T.Anilkumar
17 years ago
Iam getting this output in jdk1.5 ([#document: null])
But in j2sdk1.4.1_01 it is working fine.


/* JAVA SOURCE */

import org.w3c.dom.*;
import javax.xml.parsers.*;

class Dom1
{
public static void main(String args[])throws Exception
{
DocumentBuilderFactory dbFactory=DocumentBuilderFactory.newInstance();
DocumentBuilder docBuilder=dbFactory.newDocumentBuilder();
Document doc = docBuilder.parse("User138.xml");
System.out.println(dbFactory);
System.out.println(docBuilder);
System.out.println(doc);
}

}


/* XML FILE */
<?xml version="1.0" encoding="UTF-8"?><phone-book>
<contact category="friend">
<name>ABC1</name>
<phone-number>55792822</phone-number>
<address>vishnu nagar1</address>
</contact>
</phone-book>


/* OUTPUT */

com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl@bf32c
com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl@89fbe3
[#document: null]
18 years ago
Hi I am developing Pay-Per-Click site(Ex:Google's ADSence).In that i am using GENETIC ALOGORITHM to detect fraud clicks.So please any one give me example programs in java using Genetic Algorithms.
18 years ago
Can any one help me?
Iam developing PPC site(Ex:Google's AdSence),in that iam facing problem , how to implement GENETIC ALGORITHMS to detect FRAUD CLICKS.
18 years ago