You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Xtend Programming Language
Hello,
I want to run a java method (e. g. Runtime::runtime.exec(String[] cmd,
String[] envp)) which needs String Arrays as parameters. How can I run
such method in xtend?
Sebastian Zarnekow
unread,
May 13, 2012, 3:22:35 PM5/13/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to xtend...@googlegroups.com
Hi,
lists will be coerced to arrays transparently. Something like
Runtime::runtime.exec(newArrayList('cmds') as String[], newArrayList('envp') as String[])