Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - Leyer

#42
Felices fiestas

Periodista :xD yo creo que es un bot momia de lo viejo que es  :xD
#43
Yo tenia el mismo problema y nunca lo pude solucionar :xD
#44
Programacion  :D
#45
GNU/Linux / Re: Exe de programa C++
21 Diciembre 2011, 18:46 PM
1. Usa
Código (cpp) [Seleccionar]
cin.get();

2. Tienes que darle permisos de ejecucion chmod +x file
#46
Java / Re: JavaDoc
20 Diciembre 2011, 22:18 PM
No es posible
#47
Java / Re: Ayuda con problema UDP
20 Diciembre 2011, 19:37 PM
Archivos? en enunciado no te dice eso. deberias mejorar la forma en que lo estas haciendo :-\

Código (java) [Seleccionar]
case '1':
    String parrafo=null;
    InputStreamReader isr = new InputStreamReader(System.in);
    BufferedReader inv = new BufferedReader(isr); 
do{
    System.out.println("\tIntroduzca el texto a enviar al servidor:\n");
    parrafo = inv.readLine();
    System.out.println("Introduzca la IP destinataria del mensaje: \n");
    String ip;
    ip = inv.readLine();
    ejercicio53cliente cl = new ejercicio53cliente(2000);
    byte data[]=parrafo.getBytes();
    InetAddress destino = InetAddress.getByName(ip);
    p=new DatagramPacket(data,data.length,destino,3000);
    cl.socket.send(p);
    cl.socket.close();
}while(!parrafo.equalsIgnoreCase("fin"));break;
#48
Java / Re: Ayuda con problema UDP
20 Diciembre 2011, 17:34 PM
primero lo primero

Código (java) [Seleccionar]
String parrafo;
 
       parrafo = inv.readLine();
     
   //inv.close(); /// no puedes leer si lo estas cerrado xD
   System.out.println("Introduzca la IP destinataria del mensaje: \n");
   String ip;
   ip = inv.readLine();
#49
Desarrollo Web / Re: submit hacer click en div
20 Diciembre 2011, 15:24 PM
Código (javascript) [Seleccionar]
<div name="button" id="xbutton" class="customButton" onClick="javascript:document.form[0].submit();">
#50
Java / Re: Grabar Imagen a SQL en JAVA
20 Diciembre 2011, 14:45 PM
puedes pasarla a bytes de la siguiente forma:

Código (java) [Seleccionar]

BufferedImage bufferedImage = new BufferedImage(image.getWidth(null), image.getHeight(null), BufferedImage.TYPE_INT_ARGB); 
Graphics2D graphics2d = bufferedImage.createGraphics(); 
graphics2d.drawImage(image, 0, 0, null); 
ByteArrayOutputStream byteArrayOutputStream=new ByteArrayOutputStream();
try {
ImageIO.write(bufferedImage, "png", byteArrayOutputStream);
byte bytes[]=byteArrayOutputStream.toByteArray();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}