使Java应用程序对用户不可见

Las*_*zki 2 java swing trayicon jframe jwindow

我正在试图找到一种方法使Java应用程序对用户不可见.

基本上只是试图删除这个

任务栏图标 < - 图像

如何才能做到这一点?

public class TransparentWindow extends JFrame {

public TransparentWindow() {
    initComponents();
}

@SuppressWarnings("unchecked")
private void initComponents() {
    setExtendedState(Frame.MAXIMIZED_BOTH);
    setResizable(false);
    setUndecorated(true);
    setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
    setAlwaysOnTop(true);
    System.setProperty("sun.java2d.noddraw", "true");
    WindowUtils.setWindowTransparent(this, true);
    WindowUtils.setWindowAlpha(this, 0.6f);
}

public static void main(String[] args) {
    new TransparentWindow().setVisible(true);
}
}
Run Code Online (Sandbox Code Playgroud)

nIc*_*cOw 5

我似乎已经找到了答案,只是把行setVisible(false);放到注释中,你会看到实际的程序,UNCOMMENT行看到没有留下痕迹,据我所知,Java程序在某处运行,直到你不会手动将图标添加到系统托盘中.此外,如何从任务管理器中删除您的应用程序仍然存在该问题,但您可以删除所述图标,如您在问题中所指出的那样.

import javax.swing.*;

public class TransparentWindow extends JFrame 
{
    public TransparentWindow() 
    {
        initComponents();
    }

    @SuppressWarnings("unchecked")
    private void initComponents() 
    {
        setExtendedState(JFrame.MAXIMIZED_BOTH);
        setResizable(false);
        setUndecorated(true);
        setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
        setAlwaysOnTop(true);
        setOpacity(0.8f);
        setSize(200, 200);
        //System.setProperty("sun.java2d.noddraw", "true");
        //WindowUtils.setWindowTransparent(this, true);
        //WindowUtils.setWindowAlpha(this, 0.6f);
        setVisible(true);
        setVisible(false);

        JOptionPane.showMessageDialog(this, "It is working!", "Guess : ", JOptionPane.INFORMATION_MESSAGE); 
    }

    public static void main(String[] args) 
    {
        TransparentWindow tw = new TransparentWindow();
    }
}
Run Code Online (Sandbox Code Playgroud)

以下是运行此程序时桌面的快照,请参阅任务栏

JAVA APPLICATTION