What will be the picture.jpg absolute image path and relative image path for the following directory structure?
Directory structure
JavaProject
|_Package1
| |_App1.java
|
|_Package2
|
PICS
|_picture.jpg
Code
public class App1 extends Application{
...
Image picturePath = new Image( ??? );
ImageView picture = new ImageView(picturePath);
...
}