I wanted to create a custom cursor. Instead of the default one I tried to set this:
, but the final effect was terrible. The edges were black and jagged:

, exactly like in this applet at the bootom.
The code is as follows:
final Image customCursor = new ImageIcon("C:\\Users\\my_name\\Desktop\\apple.png").getImage();
final Point hotspot = new Point(0, 0);
final String name = "Cursor";
this.setCursor(getToolkit().createCustomCursor(customCursor, hotspot, name));
Is there any workaround to get PNG cursor with smooth edges? It seems unbelievable that there is still such a bug in Java.