2016-06-12から1日間の記事一覧

日本語を表示するJSP

<%@page contentType="text/html; charset=Windows-31J"%> <html> <head> <title>日本語を表示するJSP</title> </head> <body> <% String msg ="日本語を表示するJSP!"; out.print(msg); %> </body> </html>

FieldVariable

package jp.co.f1.basic.ch02; class Computer2{ String os; int memory; } public class FieldVariable { public static void main(String[] args) { Computer2 com = new Computer2(); com.os = "WinsdowsXP"; com.memory = 2048; System.out.println("パ…

index.html

Welcome HTML This is Welcome File

test

テスト