43 lines
937 B
Java
43 lines
937 B
Java
package xyz.thastertyn;
|
|
|
|
import xyz.thastertyn.Window.MainWindow;
|
|
|
|
/**
|
|
* Hello world!
|
|
*
|
|
*/
|
|
public class App {
|
|
public static void main(String[] args) {
|
|
System.out.println("Hello World!");
|
|
|
|
MainWindow window = new MainWindow();
|
|
window.run();
|
|
|
|
|
|
/*
|
|
try {
|
|
|
|
|
|
|
|
|
|
|
|
Document obedy = Jsoup.connect("https://objednavky.jidelnasokolska.cz/faces/secured/month.jsp?terminal=false&keyboard=&printer=")
|
|
.header("Connection", "keep-alive")
|
|
.cookie("XSRF-TOKEN", XSRF_TOKEN)
|
|
.cookie("JSESSIONID", jidelnaJSESSIONID)
|
|
.get();
|
|
|
|
System.out.println(obedy.toString());
|
|
|
|
//#endregion
|
|
|
|
} catch (IOException e) {
|
|
// TODO Auto-generated catch block
|
|
e.printStackTrace();
|
|
} catch (SecurityException e)
|
|
{
|
|
e.printStackTrace();
|
|
}*/
|
|
}
|
|
}
|