Re: [java-list] Copia de arquivo

2002-10-16 Thread Rafael Godoi Orbolato
Esse código até funciona, mas é muito lento pois vai ler byte a byte... Tente esse: //Copies one file into another. public void copyFile (File source, File destiny) { FileInputStream in; FileOutputStream out; int amount; byte[] bytes = new byte[1024]; try { in = new FileInputS

Re: [java-list] Inclusão de imagem

2002-12-22 Thread Rafael Godoi Orbolato
  Bom, e se nao for pro Oracle e for para o Interbase?? Alguem tem um exemplo??   Rafael "Maiko A. Rocha" wrote: Marcelo, No Oracle você pode usar os tipos BLOB, BFILE e ORDIMAGE (interMedia) Você encontrará exemplos na área de JDBC do OTN: http://otn.oracle.com []s Maiko      Marcelo Antonio Alv

[java-list] Tabela/Html

2002-04-06 Thread Rafael Godoi Orbolato
Estou tentando usar um JTable com o conteudo das celulas sendo HTML, usando um JEditorPane como editor e renderer mas estou tendo dificuldades em faze-lo. Alguem jah tentou algo assim? Outra, alguem jah tentou usar um JEditorPane como editor HTML? Agradeco qq ideia. Rafael ---