亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? jtop.java

?? 一個小公司要求給寫的很簡單的任務管理系統。
?? JAVA
字號:
/* * @(#)JTop.java	1.5 06/05/08 * * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * -Redistribution of source code must retain the above copyright notice, this *  list of conditions and the following disclaimer. * * -Redistribution in binary form must reproduce the above copyright notice, *  this list of conditions and the following disclaimer in the documentation *  and/or other materials provided with the distribution. * * Neither the name of Sun Microsystems, Inc. or the names of contributors may * be used to endorse or promote products derived from this software without * specific prior written permission. * * This software is provided "AS IS," without a warranty of any kind. ALL * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN") * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE, * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * * You acknowledge that this software is not designed, licensed or intended * for use in the design, construction, operation or maintenance of any * nuclear facility. *//* * @(#)JTop.java	1.5 06/05/08 * * Example of using the java.lang.management API to sort threads * by CPU usage. * * JTop class can be run as a standalone application. * It first establishs a connection to a target VM specified * by the given hostname and port number where the JMX agent * to be connected.  It then polls for the thread information * and the CPU consumption of each thread to display every 2  * seconds. * * It is also used by JTopPlugin which is a JConsolePlugin * that can be used with JConsole (see README.txt). The JTop * GUI will be added as a JConsole tab by the JTop plugin. * * @see com.sun.tools.jconsole.JConsolePlugin * * @author Mandy Chung */import java.lang.management.*;import javax.management.*;import javax.management.remote.*;import java.io.IOException;import java.util.ArrayList;import java.util.Collections;import java.util.List;import java.util.Map;import java.util.Map.Entry;import java.util.Set;import java.util.SortedMap;import java.util.Timer;import java.util.TimerTask;import java.util.TreeMap;import java.util.concurrent.ExecutionException;import java.text.NumberFormat;import java.net.MalformedURLException;import static java.lang.management.ManagementFactory.*;import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border.*;import javax.swing.event.*;import javax.swing.table.*;/** * JTop is a JPanel to display thread's name, CPU time, and its state * in a table. */public class JTop extends JPanel {    private MBeanServerConnection server;    private ThreadMXBean tmbean;    private MyTableModel tmodel;    public JTop() {        super(new GridLayout(1,0));        tmodel = new MyTableModel();         JTable table = new JTable(tmodel);        table.setPreferredScrollableViewportSize(new Dimension(500, 300));        // Set the renderer to format Double        table.setDefaultRenderer(Double.class, new DoubleRenderer());        // Add some space        table.setIntercellSpacing(new Dimension(6,3));        table.setRowHeight(table.getRowHeight() + 4);        // Create the scroll pane and add the table to it.        JScrollPane scrollPane = new JScrollPane(table);        // Add the scroll pane to this panel.        add(scrollPane);    }    // Set the MBeanServerConnection object for communicating    // with the target VM    public void setMBeanServerConnection(MBeanServerConnection mbs) {        this.server = mbs;        try {            this.tmbean = newPlatformMXBeanProxy(server,                                                 THREAD_MXBEAN_NAME,                                                 ThreadMXBean.class);        } catch (IOException e) {            e.printStackTrace();        }        if (!tmbean.isThreadCpuTimeSupported()) {            System.err.println("This VM does not support thread CPU time monitoring");        } else {            tmbean.setThreadCpuTimeEnabled(true);        }    }    class MyTableModel extends AbstractTableModel {        private String[] columnNames = {"ThreadName",                                        "CPU(sec)",                                        "State"};        // List of all threads. The key of each entry is the CPU time        // and its value is the ThreadInfo object with no stack trace.        private List<Map.Entry<Long, ThreadInfo>> threadList =             Collections.EMPTY_LIST;        public MyTableModel() {        }        public int getColumnCount() {            return columnNames.length;        }        public int getRowCount() {            return threadList.size();        }        public String getColumnName(int col) {            return columnNames[col];        }        public Object getValueAt(int row, int col) {            Map.Entry<Long, ThreadInfo> me = threadList.get(row);            switch (col) {                case 0 :                     // Column 0 shows the thread name                    return me.getValue().getThreadName();                case 1 :                     // Column 1 shows the CPU usage                    long ns = me.getKey().longValue();                    double sec = ns / 1000000000;                    return new Double(sec);                case 2 :                     // Column 2 shows the thread state                    return me.getValue().getThreadState();                default:                     return null;            }        }        public Class getColumnClass(int c) {            return getValueAt(0, c).getClass();        }        void setThreadList(List<Map.Entry<Long, ThreadInfo>> list) {            threadList = list;        }    }    /**     * Get the thread list with CPU consumption and the ThreadInfo     * for each thread sorted by the CPU time.     */    private List<Map.Entry<Long, ThreadInfo>> getThreadList() {        // Get all threads and their ThreadInfo objects         // with no stack trace        long[] tids = tmbean.getAllThreadIds();        ThreadInfo[] tinfos = tmbean.getThreadInfo(tids);        // build a map with key = CPU time and value = ThreadInfo        SortedMap<Long, ThreadInfo> map = new TreeMap<Long, ThreadInfo>();        for (int i = 0; i < tids.length; i++) {             long cpuTime = tmbean.getThreadCpuTime(tids[i]);            // filter out threads that have been terminated            if (cpuTime != -1 && tinfos[i] != null) {                map.put(new Long(cpuTime), tinfos[i]);            }        }        // build the thread list and sort it with CPU time        // in decreasing order        Set<Map.Entry<Long, ThreadInfo>> set = map.entrySet();        List<Map.Entry<Long, ThreadInfo>> list =             new ArrayList<Map.Entry<Long, ThreadInfo>>(set);        Collections.reverse(list);        return list;    }    /**     * Format Double with 4 fraction digits     */     class DoubleRenderer extends DefaultTableCellRenderer {        NumberFormat formatter;        public DoubleRenderer() {             super();            setHorizontalAlignment(JLabel.RIGHT);        }            public void setValue(Object value) {            if (formatter==null) {                formatter = NumberFormat.getInstance();                formatter.setMinimumFractionDigits(4);            }            setText((value == null) ? "" : formatter.format(value));        }    }    // SwingWorker responsible for updating the GUI    //     // It first gets the thread and CPU usage information as a     // background task done by a worker thread so that    // it will not block the event dispatcher thread.    //    // When the worker thread finishes, the event dispatcher    // thread will invoke the done() method which will update    // the UI.    class Worker extends SwingWorker<List<Map.Entry<Long, ThreadInfo>>,Object> {        private MyTableModel tmodel;        Worker(MyTableModel tmodel) {            this.tmodel = tmodel;        }        // Get the current thread info and CPU time        public List<Map.Entry<Long, ThreadInfo>> doInBackground() {            return getThreadList();        }                                                                                        // fire table data changed to trigger GUI update        // when doInBackground() is finished        protected void done() {            try {                // Set table model with the new thread list                 tmodel.setThreadList(get());                // refresh the table model                 tmodel.fireTableDataChanged();            } catch (InterruptedException e) {            } catch (ExecutionException e) {            }        }    }    // Return a new SwingWorker for UI update    public SwingWorker<?,?> newSwingWorker() {        return new Worker(tmodel);    }    public static void main(String[] args) throws Exception {        // Validate the input arguments        if (args.length != 1) {            usage();        }        String[] arg2 = args[0].split(":");        if (arg2.length != 2) {            usage();        }        String hostname = arg2[0];        int port = -1;        try {            port = Integer.parseInt(arg2[1]);        } catch (NumberFormatException x) {            usage();        }        if (port < 0) {            usage();        }        // Create the JTop Panel        final JTop jtop = new JTop();        // Set up the MBeanServerConnection to the target VM        MBeanServerConnection server = connect(hostname, port);        jtop.setMBeanServerConnection(server);        // A timer task to update GUI per each interval	TimerTask timerTask = new TimerTask() {            public void run() {                // Schedule the SwingWorker to update the GUI		jtop.newSwingWorker().execute();            }	};        // Create the standalone window with JTop panel        // by the event dispatcher thread        SwingUtilities.invokeAndWait(new Runnable() {            public void run() {                createAndShowGUI(jtop);            }        });        // refresh every 2 seconds	Timer timer = new Timer("JTop Sampling thread");	timer.schedule(timerTask, 0, 2000);    }    // Establish a connection with the remote application    //    // You can modify the urlPath to the address of the JMX agent    // of your application if it has a different URL.    //     // You can also modify the following code to take     // username and password for client authentication.    private static MBeanServerConnection connect(String hostname, int port) {        // Create an RMI connector client and connect it to        // the RMI connector server        String urlPath = "/jndi/rmi://" + hostname + ":" + port + "/jmxrmi";        MBeanServerConnection server = null;                try {            JMXServiceURL url = new JMXServiceURL("rmi", "", 0, urlPath);            JMXConnector jmxc = JMXConnectorFactory.connect(url);            server = jmxc.getMBeanServerConnection();        } catch (MalformedURLException e) {            // should not reach here        } catch (IOException e) {            System.err.println("\nCommunication error: " + e.getMessage());            System.exit(1);        }        return server;    }    private static void usage() {        System.out.println("Usage: java JTop <hostname>:<port>");        System.exit(1);    }    /**     * Create the GUI and show it.  For thread safety,     * this method should be invoked from the     * event-dispatching thread.     */    private static void createAndShowGUI(JPanel jtop) {        // Create and set up the window.        JFrame frame = new JFrame("JTop");        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);        // Create and set up the content pane.        JComponent contentPane = (JComponent) frame.getContentPane();        contentPane.add(jtop, BorderLayout.CENTER);        contentPane.setOpaque(true); //content panes must be opaque        contentPane.setBorder(new EmptyBorder(12, 12, 12, 12));        frame.setContentPane(contentPane);        // Display the window.        frame.pack();        frame.setVisible(true);    }}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
www.欧美日韩国产在线| 国产成人精品综合在线观看| 国产精品色呦呦| 久久久久久**毛片大全| 久久先锋影音av鲁色资源| 欧美不卡一区二区三区四区| 26uuu色噜噜精品一区二区| 久久嫩草精品久久久久| 中文字幕乱码日本亚洲一区二区| 26uuu亚洲综合色欧美| 欧美激情一区二区三区在线| 日韩一区在线看| 亚洲网友自拍偷拍| 同产精品九九九| 国产麻豆精品theporn| 成人手机电影网| 欧美亚洲另类激情小说| 欧美一区二区久久久| 国产亚洲成年网址在线观看| 成人免费一区二区三区在线观看| 亚洲综合无码一区二区| 另类的小说在线视频另类成人小视频在线 | 欧美tickling挠脚心丨vk| 欧美不卡在线视频| 自拍偷拍欧美激情| 日韩精品欧美精品| 丁香一区二区三区| 欧美日韩高清在线| 久久综合中文字幕| 一区二区三区四区不卡在线 | 日韩午夜小视频| 日本一区二区电影| 亚洲成av人片在www色猫咪| 精品一区免费av| av一区二区三区四区| 欧美日韩成人综合在线一区二区 | 国产精品热久久久久夜色精品三区| 日韩美女啊v在线免费观看| 日韩电影在线免费看| 成人免费视频播放| 日韩欧美不卡一区| 亚洲激情网站免费观看| 国产一区二区伦理片| 欧美性一二三区| 国产欧美日韩麻豆91| 日本欧美在线看| 色婷婷综合久久| 国产欧美精品国产国产专区| 亚洲高清在线视频| zzijzzij亚洲日本少妇熟睡| 精品久久人人做人人爽| 亚洲成av人片在线| 一本色道久久综合狠狠躁的推荐| 久久色中文字幕| 日韩精品欧美精品| 欧美熟乱第一页| 亚洲少妇30p| 东方欧美亚洲色图在线| 精品日韩成人av| 蜜臀91精品一区二区三区| 欧美这里有精品| 最新国产成人在线观看| 成人午夜免费电影| 国产亚洲一区字幕| 国内欧美视频一区二区| 欧美成人一区二区三区在线观看| 亚洲成人av福利| 欧美日本一区二区在线观看| 一区二区三区四区五区视频在线观看 | 蜜桃一区二区三区在线| 欧美日韩国产影片| 亚洲成av人影院| 欧美日韩在线不卡| 亚洲福利电影网| 7777精品伊人久久久大香线蕉经典版下载 | 日产精品久久久久久久性色| 欧美日韩卡一卡二| 性做久久久久久| 日韩一区二区三区四区| 伦理电影国产精品| 久久免费偷拍视频| 成人h版在线观看| 亚洲免费高清视频在线| 在线观看www91| 日本伊人午夜精品| 精品乱人伦小说| 高清成人在线观看| 亚洲欧美日韩综合aⅴ视频| 欧美性大战久久久| 人人超碰91尤物精品国产| 精品国产一区二区三区忘忧草| 国内成人精品2018免费看| 中文字幕免费观看一区| 一本大道av伊人久久综合| 亚洲国产欧美日韩另类综合| 3atv在线一区二区三区| 国产一区二区在线免费观看| 国产精品嫩草影院av蜜臀| 色天天综合色天天久久| 视频在线在亚洲| 久久久高清一区二区三区| 91猫先生在线| 久久成人18免费观看| 中国av一区二区三区| 欧美图片一区二区三区| 国产一区二区三区在线观看精品 | 中文字幕欧美一| 777欧美精品| av一二三不卡影片| 天天综合网天天综合色| 久久久久久免费毛片精品| 在线观看三级视频欧美| 九色综合狠狠综合久久| 夜夜精品视频一区二区 | 亚洲摸摸操操av| 日韩三级免费观看| 91美女蜜桃在线| 精品亚洲porn| 天天综合天天做天天综合| 国产精品区一区二区三| 日韩一级大片在线观看| 91黄视频在线观看| 国产成人综合精品三级| 亚洲综合视频在线| 中文字幕一区二| 久久久久久久久免费| 欧美日本乱大交xxxxx| 99在线热播精品免费| 麻豆一区二区在线| 亚洲电影一级片| 成人欧美一区二区三区黑人麻豆 | 亚洲午夜电影在线| 国产精品乱子久久久久| 久久久无码精品亚洲日韩按摩| 欧美人与禽zozo性伦| 在线观看不卡视频| 91一区二区在线观看| 欧美日韩1区2区| 在线观看91视频| 色综合色综合色综合| 成人午夜在线播放| 国产**成人网毛片九色| 国产精品1区2区| 久草精品在线观看| 日本va欧美va欧美va精品| 调教+趴+乳夹+国产+精品| 伊人一区二区三区| 亚洲一区二区三区视频在线 | 国产日韩欧美高清| 久久精品一区四区| 久久精品亚洲一区二区三区浴池 | 91丝袜高跟美女视频| 不卡av电影在线播放| 成人激情动漫在线观看| 成人福利视频在线| 91麻豆国产在线观看| av不卡免费电影| 99久久er热在这里只有精品15| 成人黄页毛片网站| 91日韩精品一区| 欧洲一区二区三区在线| 在线亚洲高清视频| 欧美精品三级在线观看| 91精品国产综合久久久蜜臀粉嫩| 欧美疯狂做受xxxx富婆| 日韩一区二区免费视频| www久久久久| 自拍视频在线观看一区二区| 一区二区三区在线看| 一区二区三区不卡视频| 日韩精品一二三| 国产精品自拍一区| 成人高清视频在线| 在线日韩国产精品| 欧美一级夜夜爽| 国产人伦精品一区二区| 亚洲制服欧美中文字幕中文字幕| 日韩电影在线看| 成人免费视频网站在线观看| 在线视频国内自拍亚洲视频| 欧美一区二区性放荡片| 国产目拍亚洲精品99久久精品| 18欧美亚洲精品| 免费在线视频一区| 99久久精品费精品国产一区二区| 欧美日韩高清在线播放| 国产欧美精品国产国产专区| 亚洲地区一二三色| 国产丶欧美丶日本不卡视频| 在线视频国内自拍亚洲视频| 欧美草草影院在线视频| 亚洲精品菠萝久久久久久久| 久久99久久99| 在线看国产一区二区| 久久综合视频网| 亚洲成人动漫精品| 99久久国产综合色|国产精品| 538prom精品视频线放| 国产精品视频一二三| 蓝色福利精品导航|