Ruby

HTTPクライアント

HTTPS接続する方法を調査してみた。 どうやらnet/httpsでできる模様 require 'rubygems' require 'httpclient' require 'kconv' require "net/https" https = Net::HTTP.new('192.168.1.0', 8080) https.use_ssl = true #サーバー認証無し https.verify_mode…

Excelシートをシート毎にCSV出力する

require 'win32ole' def divExcel(file) excel = WIN32OLE.new('Excel.Application') excel.visible = false excel.displayAlerts = false excel.workbooks.open 'filename' => file begin workbook = excel.workbooks(1) sheetCnt = workbook.sheets.count …

CSVファイル読み込んでファイルに書き出し

require "CSV" buf = "" CSV.foreach('hogehoge.csv'){|row| buf += row[0] + row[1] + row[2]) } File.open('output.txt','w').puts(buf)

使用テキスト

Rubyレシピブック 第2版 268の技作者: 青木峰郎,後藤裕蔵,高橋征義,まつもとゆきひろ出版社/メーカー: ソフトバンク クリエイティブ発売日: 2007/02/01メディア: 単行本購入: 9人 クリック: 182回この商品を含むブログ (97件) を見る1版たのしいRuby 第2版 …