Re: Running Perl from Java (WAS: print Greek small letter alpha in html)

2006-06-15 Thread Mr. Shawn H. Corey
On Thu, 2006-15-06 at 05:01 +, may sandi wrote:
 Hi,
 
 Does anybody know how can run a perl file from java?
 I already tried with following command:
 
  try {
  Runtime r = Runtime.getRuntime();
  String cmdLine[] = { /usr/bin/perl,c:/link41a/linkparser2.pl};

Is PERL.EXE really in a directory /USR/BIN ? Normally, on MS DOS, the
path is: /PERL/BIN/PERL

  r.exec(cmdLine);
 
 But, I doesn't work.
 Currently I am using jdk 1.4.
 
 
 thanks in advance
 

BTW, change the Subject when you change the subject.


-- 
__END__

Just my 0.0002 million dollars worth,
   --- Shawn

For the things we have to learn before we can do them, we learn by doing them.
  Aristotle

* Perl tutorials at http://perlmonks.org/?node=Tutorials
* A searchable perldoc is at http://perldoc.perl.org/



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response




Re: Running Perl from Java (WAS: print Greek small letter alpha in html)

2006-06-15 Thread Mr. Shawn H. Corey
On Thu, 2006-15-06 at 08:20 -0400, Mr. Shawn H. Corey wrote:
 BTW, change the Subject when you change the subject.

Better yet, start a new thread.


-- 
__END__

Just my 0.0002 million dollars worth,
   --- Shawn

For the things we have to learn before we can do them, we learn by doing them.
  Aristotle

* Perl tutorials at http://perlmonks.org/?node=Tutorials
* A searchable perldoc is at http://perldoc.perl.org/



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response




print Greek small letter alpha in html

2006-06-14 Thread Ken Perl

hi,
To print Greek small letter alpha in a html page, I tried to print
this in perl but not work,
#03B1;

could someone give me some clue how to make this work?

--
perl -e 'print unpack(u,62V5N\FME;G\!EFQ`9VUA:6PN8V]M\[EMAIL PROTECTED]
)'

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response




Re: print Greek small letter alpha in html

2006-06-14 Thread Mr. Shawn H. Corey
On Thu, 2006-15-06 at 10:04 +0800, Ken Perl wrote:
 hi,
 To print Greek small letter alpha in a html page, I tried to print
 this in perl but not work,
 #03B1;
 
 could someone give me some clue how to make this work?

Yes ... I think so.

How about: #x03b1;


-- 
__END__

Just my 0.0002 million dollars worth,
   --- Shawn

For the things we have to learn before we can do them, we learn by doing them.
  Aristotle

* Perl tutorials at http://perlmonks.org/?node=Tutorials
* A searchable perldoc is at http://perldoc.perl.org/



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response




Re: print Greek small letter alpha in html

2006-06-14 Thread may sandi

Hi,

Does anybody know how can run a perl file from java?
I already tried with following command:

try {
Runtime r = Runtime.getRuntime();
String cmdLine[] = { /usr/bin/perl,c:/link41a/linkparser2.pl};
r.exec(cmdLine);

But, I doesn't work.
Currently I am using jdk 1.4.


thanks in advance

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/ http://learn.perl.org/first-response