Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
/**
*
*/
package de.tutorials;
public class StartAcrobatExample {
/**
* @param args
*/
public static void main(String[] args) throws Exception {
Runtime
.getRuntime()
.exec(
new String[] {
"C:/Program Files/Adobe/Acrobat 7.0/Reader/AcroRd32.exe",
"D:/docs/pdfs/plone/artist-community-1.pdf" });
}
}
Runtime rt = Runtime.getRuntime();
try
{
Process p = rt.exec( "rundll32" +" " + "url.dll,FileProtocolHandler"
+ " " + "myFile.pdf" );
}
catch ( Exception e1 )
{
// TODO Auto-generated catch block
e1.printStackTrace();
}