Click here to Skip to main content
15,915,611 members
Home / Discussions / Java
   

Java

 
AnswerRe: Fingerprint recognition using java + Source code Pin
Nagy Vilmos14-Jun-09 22:07
professionalNagy Vilmos14-Jun-09 22:07 
GeneralRe: Fingerprint recognition using java + Source code Pin
lathakarthigaa10-Feb-11 18:34
lathakarthigaa10-Feb-11 18:34 
GeneralRe: Fingerprint recognition using java + Source code Pin
Nagy Vilmos11-Feb-11 3:32
professionalNagy Vilmos11-Feb-11 3:32 
QuestionCalling VC dll as a thread from java application Pin
Aditya2210-Jun-09 2:06
Aditya2210-Jun-09 2:06 
AnswerRe: Calling VC dll as a thread from java application Pin
deepnighttwo11-Jun-09 21:52
deepnighttwo11-Jun-09 21:52 
GeneralRe: Calling VC dll as a thread from java application Pin
Aditya2211-Jun-09 22:22
Aditya2211-Jun-09 22:22 
QuestionCalling VC dll as a thread from java application Pin
Aditya2210-Jun-09 2:05
Aditya2210-Jun-09 2:05 
QuestionHelp me to convert this code in C# into a Java code Pin
hellboy_839-Jun-09 22:07
hellboy_839-Jun-09 22:07 
public class Program
   {
       public static void Main(string[] args)
       {
           try
           {
               // Check arguments
               if (args.Length != 3)
               {
                   ShowUsage();
                   return;
               }

               // Create message
               MailMessage mmMessage = new MailMessage();
               mmMessage.To.Add(new MailAddress(args[2] as string));
               mmMessage.From = new MailAddress(args[1] as string);
               mmMessage.Subject = "TestMail";
               mmMessage.Body = "This is a test";

               // Send message
               SmtpClient sc = new SmtpClient(args[0] as string);
               sc.Send(mmMessage);

           }
           catch (Exception ex)
           {
               Console.WriteLine(ex);
           }
           finally
           {
               //Pause
               Console.WriteLine();
               Console.Write("Press a key >");
               Console.ReadKey();
           }
       }

       private static void ShowUsage()
       {
           Console.WriteLine("Usage");
           Console.WriteLine("TestMail [SmtpServer] [FromAddress] [ToAddress]");
       }

   } // end Program


Regards,
AnswerRe: Help me to convert this code in C# into a Java code Pin
Dave Doknjas10-Jun-09 12:21
Dave Doknjas10-Jun-09 12:21 
QuestionWebServices Pin
cdpace8-Jun-09 1:28
cdpace8-Jun-09 1:28 
GeneralCalling vc++ exe from java Pin
don Moen7-Jun-09 21:50
don Moen7-Jun-09 21:50 
GeneralRe: Calling vc++ exe from java Pin
Marc Firth7-Jun-09 22:12
Marc Firth7-Jun-09 22:12 
GeneralRe: Calling vc++ exe from java Pin
don Moen7-Jun-09 23:17
don Moen7-Jun-09 23:17 
GeneralRe: Calling vc++ exe from java Pin
deepnighttwo11-Jun-09 22:01
deepnighttwo11-Jun-09 22:01 
GeneralRe: Calling vc++ exe from java Pin
don Moen12-Jun-09 21:46
don Moen12-Jun-09 21:46 
General[Message Deleted] Pin
rajisweety7-Jun-09 7:53
rajisweety7-Jun-09 7:53 
GeneralPlease read carefully forum guidelines before posting... Pin
CPallini7-Jun-09 21:13
mveCPallini7-Jun-09 21:13 
GeneralRe: URGENT need a program in java Pin
Nagy Vilmos8-Jun-09 2:03
professionalNagy Vilmos8-Jun-09 2:03 
GeneralRe: URGENT need a program in java Pin
rajisweety11-Jun-09 15:49
rajisweety11-Jun-09 15:49 
GeneralRe: URGENT need a program in java Pin
Java John11-Jun-09 1:56
Java John11-Jun-09 1:56 
Question[Message Deleted] Pin
rajisweety7-Jun-09 7:45
rajisweety7-Jun-09 7:45 
AnswerInappropriate Title Pin
fly9047-Jun-09 10:32
fly9047-Jun-09 10:32 
GeneralI am getting the error when I try to execute a Query. Error retrieving data:1 java.sql.SQLException: [Macromedia][Oracle JDBC Driver]Value can not be converted to requested type.Exception in DBAccessor:formatResults java.sql.SQLException: [Macromedia Pin
ummadu5-Jun-09 10:40
ummadu5-Jun-09 10:40 
GeneralI am getting the error when I try to execute a Query. Error retrieving data:1 java.sql.SQLException: [Macromedia][Oracle JDBC Driver]Value can not be converted to requested type.Exception in DBAccessor:formatResults java.sql.SQLException: [Macromedia Pin
ummadu5-Jun-09 10:40
ummadu5-Jun-09 10:40 
GeneralError getting column type Pin
fly9047-Jun-09 10:41
fly9047-Jun-09 10:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.