wpjr2’s Weblog

Artigos e tutoriais úteis

Arquivos para 'Uncategorized' Categoria


Atualizações no Blog

Escrito por wpjr2 em Junho 25, 2008

Estarei em breve voltando a postar novas notícias. Estou muito apertado com as provas finais de semestre do mestrado.

Aguardem mais posts.

Enviado em Uncategorized | Nenhum comentário »

Desenvolvimento Java Para Iniciantes

Escrito por wpjr2 em Junho 17, 2008

Apesar da tecnologia Java possuir uma linguagem de programação bem mais simplificada do que algumas de suas predescessoras (C, C++), alguns novos conceitos porem prover dificuldades para iniciantes na tecnologia, tais como a análise e desenvolvimento orientado por objetos, alocação automática de memória, classe vs. objeto, polimorfismo, dentro outros.

Para facilitar este aprendizado, existem diversas ferramentas que possuem o objetivo de auxiliar o aprendizado destes novos conceitos, tais como:

- BlueJ
- Greenfoot

BlueJ Screenshot

Link

Enviado em Uncategorized | Tagged: , | Nenhum comentário »

Conversão de Formatos para PDF Gratuita

Escrito por wpjr2 em Maio 27, 2008

Para quem precisa de um conversor gratuito de documentos para PDF:

Link

Enviado em Uncategorized | Tagged: | Nenhum comentário »

Resumo dos Fluxos de Dados em Java (2)

Escrito por wpjr2 em Maio 3, 2008

Type of I/O Streams Description
Memory CharArrayReader
CharArrayWriter
ByteArrayInputStream
ByteArrayOutputStream
Read from and write to memory. Create on an existing array and then use the read and write methods to read from or write to the array.
Memory StringReader
StringWriter
StringBufferInputStream
top>StringReader reads characters from a String in memory.StringWriter writes to a String, collecting characters written to it in a StringBuffer, which can then be converted to a String.StringBufferInputStream is similar to StringReader, except that it reads bytes from a StringBuffer.
Pipe PipedReader
PipedWriter
PipedInputStream
PipedOutputStream
Implement the input and output components of a pipe. Pipes are used to channel the output from one thread into the input of another.
File FileReader
FileWriter
FileInputStream
FileOutputStream
Collectively called file streams, these streams are used to read from or write to a file on the native file system.
Concatenation N/A
SequenceInputStream
Concatenates multiple input streams into one input stream.
Object Serialization N/A
ObjectInputStream
ObjectOutputStream
Used to serialize objects.
Data
Conversion
N/A
DataInputStream
DataOutputStream
Read or write primitive data types in a machine-independent format.
Counting LineNumberReader
LineNumberInputStream
Keeps track of line numbers while reading.
Peeking Ahead PushbackReader
PushbackInputStream
These input streams each have a pushback buffer. When reading data from a stream, it is sometimes useful to peek at the next few bytes or characters in the stream to decide what to do next.
Printing PrintWriter
PrintStream
Contain convenient printing methods. These are the easiest streams to write to, so you will often see other writable streams wrapped in one of these.
Buffering BufferedReader
BufferedWriter
BufferedInputStream
BufferedOutputStream
Buffer data while reading or writing, thereby reducing the number of accesses required on the original data source. Buffered streams are typically more efficient than similar nonbuffered streams and are often used with other streams.
Filters FilterReader
FilterWriter
FilterInputStream
FilterOutputStream
These abstract classes define the interface for filter streams, which filter data as it’s being read or written.
Convert InputStreamReader
OutputStreamWriter
Convert byte streams to character streams, and vice-versa.InputStreamReaders read bytes from InputStreams and convert them to characters. OutputStreamWriters convert characters to bytes and write to an OutputStream. Default character encodings are stored in System.getProperty(”file.encoding”).

Enviado em Curso de Programação Java, Uncategorized | Tagged: , , | Nenhum comentário »

Apresentação: Desenvolvimento de Aplicações Móveis em JavaME

Escrito por wpjr2 em Abril 24, 2008

Segue abaixo uma apresentação que fiz na Inforuso Infocom 2007 em Outubro do ano passado:

Enviado em Uncategorized | Nenhum comentário »

Novidades no Blog

Escrito por wpjr2 em Abril 22, 2008

Segue abaixo algumas novidades no blog:

  • Links: novos links de páginas no blog para sugestões de livros, links, e para temas referentes às plataformas JavaSE e JavaME.
  • Projeto de Curso: disponibilizei as apresentações dos exercícios dos capítulos 3 e 4 do nosso projeto de curso. Estou em fase de análise do Slideshare no blog para que todos possam acessar os slides durante a semana.
  • Exercícios da apostila: disponibilizei também o gabarito dos exercícios da apostila. Como preciso fazer todos os exercícios, estarei disponibilzando-os aos poucos.

Ambas páginas estão disponíveis via link “Java SE”.

Comentários e sugestões são bem vindas.

Enviado em Uncategorized | Tagged: | Nenhum comentário »

História das Linguagens de Programação

Escrito por wpjr2 em Abril 22, 2008

Segue abaixo um infograma interessante sobre o histórico das linguagens de programação, incluindo o Javada Sun e o C# da Microsoft.

Fonte: http://www.georgehernandez.com/h/xComputers/Programming/Media/tongues-cleaner.png

Enviado em Uncategorized | Nenhum comentário »

Hello world!

Escrito por wpjr2 em Abril 9, 2008

Welcome to WordPress.com. This is your first post. Edit or delete it and start blogging!

Enviado em Uncategorized | 1 Comentário »