list の検索結果:

Postgresの使い方

… INSERT UNLISTEN ALTER TYPE CREATE RULE DROP INDEX LISTEN UPDATE ALTER USER CREATE SCHEMA DROP LANGUAGE LOAD VACUUM ALTER USER MAPPING CREATE SEQUENCE DROP OPERATOR LOCK VALUES ALTER VIEW CREATE SERVER DROP OPERATOR CLASS MOVE WITH SQLコマンドの…

はてなカウンターのアクセス数ランキングを作成するプログラム

…の一覧を取得する。 List<Map<String, String>> counterList = HatenaCounterAccess.getCounterList( cookie, name ); ////////////////////////////////////////////////////////////////// boolean inputOK; //////////////////////////////////////////////////////…

2009年11月のアクセス数ランキング

…5% 8 java list ソート 59 0.69% 9 bash 配列 58 0.68% 10 plink 55 0.65% おまけ 上位10検索語(単語)に関連するリンクです。 順位 はてなキーワード 人気ブログ 1 配列 配列 2 java java 3 javascript javascript 4 putty putty 5 php php 6 vba vba 7 コマンド コマンド 8 ソート ソート 9 plink plink 10 vim vim 上位10検…

Javaのシステムプロパティをすべて表示するJavaコード

…perties().list(System.out);Properties.list()メソッドを使うと、for-each文を書く必要がなくなり、もっと簡単になりますね。 Properties.list()メソッドを使って、以下のようにコードを書き換えました。 import java.util.*; /** * Javaのシステムプロパティの表示。 * @nattou_curry */ public class PrintProperties2 { public static…

エキサイトブログとBloggerの記事を同期するプログラム - ExciteBlogToBloggerReplicator

…の一覧を取得する。 List< Map<String, String>> e_articleList; try { e_articleList = ExciteBlogAccess.getArticleList( e_loginInfo ); } catch ( Exception e ) { System.err.println( "エキサイトブログの最新の記事情報の一覧取得でエラーが発生しました。" ); e.printStackTrace(); return; } //…

エキサイトブログの最新記事をBloggerに複製するJavaコード

…の一覧を取得する。 List< Map<String, String>> articleList = ExciteBlogAccess.getArticleList( e_loginInfo ); // Bloggerにログインする(SSL)。 String b_cookie = BloggerAccess.loginWithSSL( "Bloggerのメールアドレス", "Bloggerのパスワード" ); // Bloggerにログイン情報を取得する。 Map<Strin…

Bloggerに接続するためのJavaコード

…の一覧を取得する。 List< Map<String, String>> articleList = getArticleList( loginInfo ); // 取得した記事情報を表示する。 for ( int i = 0; i < articleList.size(); ++i ) { Map<String, String> articleInfo = articleList.get( i ); String title = articleInfo.get( "titl…

エキサイトブログに接続するためのJavaコード

…の一覧を取得する。 List< Map<String, String>> articleList = getArticleList( loginInfo ); // 取得した記事情報を表示する。 for ( int i = 0; i < articleList.size(); ++i ) { Map<String, String> articleInfo = articleList.get( i ); String title = articleInfo.get( "titl…

読書メーターとブクログに登録した本&コメントを同期するプログラムをバージョンアップしました

…///////// List<String> diffList = new ArrayList<String>(); // 読書メーターに登録した全ての本について、以下を繰り返す。 for ( String isbn : dokushoMeter.keySet() ) { // ブクログに同じ本を登録していることを確認する。 if ( ! booklog.containsKey( isbn ) ) { // ブクログに登録していない: diffList.add( isbn )…

(PuTTYユーザマニュアルの日本語訳) 3.5 SSHでポート転送を使う - 3.5 Using port forwarding in SSH

…TY should listen for incoming connections. There are likely to be plenty of unused port numbers above 3000. (You can also use a local loopback address here; see below for more details.) Now, before you start your SSH connection, go to the T…

2009年9月のアクセス数ランキング

…3 1.50% 8 list 214 1.32% 8 php 214 1.32% 10 plink 191 1.18% 2009年9月の上位10検索語 順位 内容 回数 比率 1 javascript 配列 838 12.42% 2 java 配列 353 5.23% 3 vba 配列 169 2.50% 4 vim コマンド 92 1.36% 5 java list ソート 58 0.86% 6 java ソート 49 0.73% 7 php 配列 48 0.71% 8 p…

経路制御とルーティングテーブル

…Interface List 0x1 ........................... MS TCP Loopback interface 0x2 ...00 16 6f c1 81 90 ...... Intel(R) PRO/Wireless 2200BG Network Connection - パケット スケジューラ ミニポート 0x3 ...00 0d 5e 32 72 f1 ...... Intel(R) PRO/100 VE Network Connect…

Javaを使うなら理解しておきたいアルゴリズム - 抽出・ソート・結合・集計 (リスト&ビーン編)

…///////// List countries = new ArrayList(); Country country; country = new Country(); country.setName( "日本" ); country.setCurrency( "JPY" ); country.setPopulation( 127156000 ); countries.add( country ); country = new Country(); country.setN…

Javaを使うなら理解しておきたいアルゴリズム - 抽出・ソート・結合・集計 (リスト&マップ編)

…リストを使います。 List> countries = new ArrayList>(); Map country; country = new HashMap(); country.put( "name", "日本" ); country.put( "currency", "JPY" ); country.put( "population", 127156000 ); countries.add( country ); country = new HashMap(); co…

Windowsのnetstatコマンドを試してみた

…aVie-GA:0 LISTENING TCP LaVie-GA:microsoft-ds LaVie-GA:0 LISTENING TCP LaVie-GA:990 LaVie-GA:0 LISTENING TCP LaVie-GA:2425 LaVie-GA:0 LISTENING TCP LaVie-GA:2869 LaVie-GA:0 LISTENING TCP LaVie-GA:3389 LaVie-GA:0 LISTENING TCP LaVie-GA:1027 …

Javaを使うなら必ず覚えておきたいデータ構造 - 配列・リスト・マップ

…のように行います。 List リストの名前 = new ArrayList(); リストの生成では、格納するデータの型とリストの名前を指定します。サイズの指定は必須ではありません。 例えば、Stringを格納するリストlistを生成するには、以下のように書きます。 List list = new ArrayList(); ■リストにデータを追加する。 リストへのデータの追加は以下のように行います。 リストの名前.add( データ ); リストへのデータの追加では、リストの名前…

ブクログの本棚を並べ替えるプログラムを作ったよ

…ing[] bookList = BooklogAccess.getBookList( cookie ); // 一覧中のすべての本について以下を繰り返す。 List<Map<String, String>> bookInfo = new ArrayList<Map<String, String>>(); for ( int i = 0; i < bookList.length; ++i ) { String isbn = bookList[i]; // ブクログから本の情報…

読書メーターとブクログに登録した本&コメントを同期するプログラムを作ったよ

…///////// List<String> diffList = new ArrayList<String>(); // 読書メーターに登録した全ての本について、以下を繰り返す。 for ( String isbn : dokushoMeter.keySet() ) { // ブクログに同じ本を登録していることを確認する。 if ( ! booklog.containsKey( isbn ) ) { // ブクログに登録していない: diffList.add( isbn )…

(PuTTYユーザマニュアル) 9.2 Pageantのメインウィンドウ - 9.2 The Pageant main window

…1 The key list box Pageantメインウィンドウの大きなリストボックスには、Pageantに現在ロードされている秘密キーが表示されます。以下のように表示されます。 The large list box in the Pageant main window lists the private keys that are currently loaded into Pageant. The list might look something like this…

net.java.ao.Preloadの日本語訳

…ecifies a list of fields which should be appended to the SELECT clause every time a row of the type in question is retrieved. If the developer knows that every time an entity of a certain type is retrieved, certain fields will be accessed, …

正規表現に関してプログラマーが覚えておくべき最低限のコト - The absolute bare minimum every programmer should know about regular expressions

…hat isn’t listed. The leading ^ “negates” the list. Instead of listing all of the characters you want to included in the class, you list the characters you don’t want included. Note that the ^ (caret) character used here has a different mea…

SWTとJFaceに必要な外部JARファイルを特定する - Identify the Required External JAR Files for SWT and JFace

…有用なDialog(ListDialogやListSelectionDialogなど)を使えるようになるので、一覧に含めました。 プラグイン開発環境がある場合は、プラグイン依存関係ビューで自分のバージョンのEclipseでのJFaceの依存関係を調べることができます。以下のように調べます: The file org.eclipse.ui.workbench_<version info>.jar is not required to run the standard JFace…

(PuTTYユーザマニュアル) 2.2 ホストキーを検証する(SSHのみ) - 2.2 Verifying the host key (SSH only)

…servers have more than one host key. If the system administrator sends you more than one fingerprint, you should make sure the one PuTTY shows you is on the list, but it doesn't matter which one it is.) 2.1 セッションを始める - 目次に戻る - 2.3 ログインする >>

(PuTTYユーザマニュアル) 1.2 SSH、Telnet、そしてRolginにはどのような違いがあるか? - 1.2 How do SSH, Telnet and Rlogin differ?

…します。 This list summarises some of the differences between SSH, Telnet and Rlogin. SSH(「セキュアシェル」の意味)は最近作られた、安全性の高いプロトコルです。接続の盗聴やハイジャック等の攻撃を防ぐために、強力な暗号を使います。TelnetとRloginはどちらも古いプロトコルで、安全性はほとんどありません。 SSHとRloginのどちらも、パスワードを入力せずにサーバへログインできます。(Rl…

net.java.ao.RawEntityのJavadoc

…ertyChangeListener(PropertyChangeListener)などです。 The superinterface for all entities, regardless of primary key. Developers may choose to extend this interface rather than Entity if they need to specify a custom primary key field. As this in…

net.java.ao.schema.AbstractTableNameConverterのJavadoc

…e mapping list. Thus, added mappings override any prior mappings, including prior manual mappings. Thus mappings added sequentially will invert in order, leading to the last mapping having the highest priority in evaluation. 引数: pattern - J…

(PuTTYユーザマニュアルの日本語訳) 6.2 PSFTPを実行する - 6.2 Running PSFTP

…s section lists all the available commands. 6.2.1 PSFTPコマンドでの一般的なクォート規則 - 6.2.1 General quoting rules for PSFTP commands PSFTPのコマンドがスペースで区切られている場合には、通常はPSFTPコマンドインタプリタはそのコマンドを複数の単語として扱います。例えば、ren oldfilename newfilenameというコマンドは、三つの単語からなります。…

Javaソースをきれいに見せる、たった7つの空白の入れ方

…c = (ArrayList)△getList(); 実際に7項目を意識してソースを書いてみた import java.io.*; public class Sample { public static void main( String args ) { BufferedReader reader = null; try { reader = new BufferedReader( new FileReader( "sample.txt" ) ); String line;…

(PuTTYユーザマニュアルの日本語訳) 6.1 PSFTPを始める - 6.1 Starting PSFTP

…home/fred Listing directory /home/fred/lib drwxrwsr-x 4 fred fred 1024 Sep 6 10:42 . drwxr-sr-x 25 fred fred 2048 Dec 14 09:36 .. drwxrwsr-x 3 fred fred 1024 Apr 17 2000 jed lrwxrwxrwx 1 fred fred 24 Apr 17 2000 timber drwxrwsr-x 2 fred fre…

(PuTTYユーザマニュアル) 10章: 共通のエラーメッセージ - Chapter 10: Common error messages

…s chapter lists a number of common error messages which PuTTY and its associated tools can produce, and explains what they mean in more detail. 全てのエラーメッセージのリストアップは行いません。発生しないはずメッセージも多くありますし、説明しなくてもわかるメッセージもあります。この章でリストアップされていない意味の不明なエラーメッセー…