1.桌面 右鍵→查看→顯示桌面圖標(biāo) 把復(fù)選框鉤掉
創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的沂水網(wǎng)站設(shè)計(jì)、移動媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
2.直接把桌面進(jìn)程結(jié)束 打開任務(wù)管理器 win7電腦按shift+ctrl+esc
非win7電腦按shift+ctrl+del 選擇進(jìn)程這一欄 找到一個(gè)進(jìn)程名為 explorer.exe 的進(jìn)程
結(jié)束后桌面就沒有了 如果想調(diào)出來 再次打開任務(wù)管理器 依次選擇 文件→新建任務(wù)
在里面輸入 explorer.exe 按下確定 就打開了
還有 自動關(guān)機(jī)可以用cmd命令來實(shí)現(xiàn) 比如想在22:00分關(guān)機(jī)
就cmd里面打 at 22:00 shutdowm -t -s(注意空格)
如果想取消就輸入shutdown -a
cmd怎么打開:開始菜單→運(yùn)行→輸入cmd
或者在鍵盤上按win+r 要先按win再按R 不能同時(shí)按下
public class RuntimeTest {
public static void main(String[] args)
{
Runtime rt=Runtime.getRuntime();
try
{
rt.exec("shutdown.exe -s -t 40");
/*40的單位為秒,可以改成你想要的任何數(shù)字。
如果是想定時(shí)關(guān)機(jī),可用這句:rt.exec("at 19:00 shutdown.exe -s");19:00可以換成你想要的時(shí)間*/
}
catch(Exception e)
{
e.printStackTrace();
}
}
}
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Test extends JFrame implements ActionListener{
private JButton button=new JButton("關(guān)機(jī)");
public Test(String title){
super(title);
setBounds(100, 100, 400, 300);
setVisible(true);
setLayout(new FlowLayout());
add(button);
button.addActionListener(this);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String[] args){
new Test("關(guān)機(jī)");
}
public void actionPerformed(ActionEvent e) {
if (e.getSource()==button) {
Runtime rt=Runtime.getRuntime();
try {
rt.exec("Shutdown -s -t 30");
} catch (IOException e1) {
System.out.println("錯(cuò)誤指令!");
e1.printStackTrace();
}
}
}
}