⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 horasistema.java

📁 multiplataform real time Linux monitor
💻 JAVA
字号:
/** LiMon-JClient *  Copyright (C) 2006 Marcelo Busico * *  Author:  Marcelo Busico    marcelobusico@gmail.com * *  This program is free software which I release under the GNU General Public *  License. You may redistribute and/or modify this program under the terms *  of that license as published by the Free Software Foundation; either *  version 2 of the License, or (at your option) any later version. * *  This program is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the *  GNU General Public License for more details.  Version 2 is in the *  LICENSE.txt file in the top level directory of this distribution. *  *  To get a copy of the GNU General Puplic License, write to the Free Software *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package limonclient;import java.io.*;import java.text.DateFormat;import java.text.Format;public class HoraSistema {    private int horas;    private int minutos;    private int segundos;        /** Crea una nueva instancia de HoraSistema */    public HoraSistema() {    }        /** Devuelve las horas transcurridas en el dia actual */    public int getHoras()    {        return horas;    }    /** Devuelve los minutos transcurridos en la hora actual */    public int getMinutos()    {        return minutos;    }    /** Devuelve los segundos transcurridos en el minuto actual */    public int getSegundos()    {        return segundos;    }    /** Devuelve toda la informacion del objeto en una cadena */    public String toString()    {        String sHoras;        String sMinutos;        String sSegundos;        if(horas<10)            sHoras=new String("0"+horas);        else            sHoras=new String(String.valueOf(horas));        if(minutos<10)            sMinutos=new String("0"+minutos);        else            sMinutos=new String(String.valueOf(minutos));        if(segundos<10)            sSegundos=new String("0"+segundos);        else            sSegundos=new String(String.valueOf(segundos));        return ("Hora: " + sHoras + ":" + sMinutos + ":" + sSegundos);    }    /** Recibe los atributos del objeto desde la conexion     * Demora: 50 lecturas en 5 segundos     */    public void recibirObjeto(Conexion con) throws IOException    {        //Envia peticion        Cabecera envCab=new Cabecera(Cabecera.IdPedirHora,con.getPassword());        envCab.enviarCabecera(con.getSalida());        //Recibe cabecera del servidor        Cabecera recCab=new Cabecera();        recCab.recibirCabecera(con.getEntrada());        //Verifica que la cabecera sea la solicitada        if(recCab.getIdentificador()==Cabecera.IdDevolverHora)        {            horas=con.getEntrada().readInt();            minutos=con.getEntrada().readInt();            segundos=con.getEntrada().readInt();        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -