JRuby のバックアップ(No.17)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- JRuby へ行く。
- 1 (2012-09-25 (火) 20:14:36)
- 2 (2012-09-27 (木) 10:51:10)
- 3 (2012-09-27 (木) 15:37:20)
- 4 (2012-10-02 (火) 15:06:42)
- 5 (2012-10-02 (火) 16:57:35)
- 6 (2012-10-05 (金) 14:04:57)
- 7 (2012-10-24 (水) 15:37:38)
- 8 (2012-10-24 (水) 20:18:14)
- 9 (2012-10-26 (金) 18:56:41)
- 10 (2012-10-29 (月) 21:17:01)
- 11 (2012-11-16 (金) 18:40:36)
- 12 (2012-11-18 (日) 23:16:34)
- 13 (2012-11-23 (金) 04:33:39)
- 14 (2012-11-30 (金) 21:44:42)
- 15 (2012-12-06 (木) 01:11:58)
- 16 (2013-09-16 (月) 20:18:28)
- 17 (2013-09-17 (火) 14:24:43)
- 18 (2014-08-29 (金) 16:12:41)
- 19 (2014-09-02 (火) 15:42:27)
- 20 (2014-09-04 (木) 01:37:28)
- 21 (2014-09-19 (金) 15:58:36)
- 22 (2014-09-19 (金) 22:05:52)
- 23 (2014-09-26 (金) 19:03:10)
- 24 (2014-11-08 (土) 01:41:12)
- 25 (2015-09-29 (火) 19:47:58)
- 26 (2017-10-27 (金) 16:26:13)
- 27 (2019-02-19 (火) 14:03:07)
TITLE:JRuby
Posted by aterai at 2012-07-19
JRuby で Swing などのサンプル
- JRuby+Swing - てんぷらメモ@はてなから移動中。
概要
環境変数`JAVA_HOME
,
JRUBY_HOME
`を設定し、パスを通しておく。
> set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_04 > set JRUBY_HOME=C:\jruby-1.7.0 > set Path=%JAVA_HOME%\bin;%JRUBY_HOME%\bin;%Path% > jruby -version jruby 1.7.0 (1.9.3p203) 2012-10-22 ff1ebbe on Java HotSpot(TM) 64-Bit Server VM 1.7.0_09-b05 [Windows 7-amd64]
Swing + JRuby サンプル
EDT で起動(JFrameを表示)
- `
Swing
のコンポーネントは
Event Dispatch Thread
上で扱う必要があるので、以下のサンプルでは、
self
が
java.lang.Runnable
の
run
メソッドを実装し、
java.awt.EventQueue.invokeLater
`で実行している - `
require "java"
より
include Java
`が良い? `import
より
java_import javax.swing.JLabel
`が良い?- `
jruby EDTSwingTest.rb
`と実行
例外処理の記述方法(SystemLookAndFeelの設定)
- `
SystemLookAndFeel
を設定する際の例外処理を、
begin rescue
`で記述する
クラスの継承(JPanelを継承)
- `
class MainPanel < JPanel
`
無名インナークラス(JButtonにActionListenerを追加)
- リスナーを`
JButton
に設定し、クリックすると
JTextField
`に文字を追加- #JRUBY-903 Java interface modules - jira.codehaus.org
- #JRUBY-991 Auto java interface coercion for vanilla ruby objects - jira.codehaus.org
- `
implicit closure conversion
`
- `
- RSpec, JRuby, Mocking, and Multiple Interfaces
Exploring JRuby Syntax Trees in JRuby- Javaインタフェースの実装にクロージャを使用する - Tips for accessing Java objects from JRuby (Part 3) (Nishigaya's Weblog)
インタフェースの実装(MouseListenerを追加)
- `
java_implements
`はもう使用できない?- 代わりに: `
class MainPanel < JPanel; include MouseListener
` - カンマ区切りで複数指定しても可: `
class MainPanel < JPanel; include MouseListener, ActionListener
`
- 代わりに: `
- `
instanceof
`- `
self.java_kind_of?(MouseListener)
`
- `
オーバーライドしたメソッドでsuperクラスのメソッドを呼び出すと例外が発生する
Exception in thread "AWT-EventQueue-0" org.jruby.exceptions.RaiseException: (NoMethodError) undefined method `paintComponent' for nil:NilClass
SuperPaint = JComponent.java_class.declared_method 'paintComponent', 'java.awt.Graphics'
などとして、関数ポインタ?を作成して実行する。
配列(JTableに行追加)
- `
["No.", "Name", "Path"].to_java
で
ruby
の配列を
java
の配列に変換して、
JTable
`の行を追加
protected なメソッドをオーバーライドして使用
- protected なメソッドをオーバーライドして使用できなかった
- SwingWorker#process がオーバーライドして使用(firePropertyChange を使用しなくて済む)
- JDK 1.6.0_18で、TableRowSorterでのソートがうまくいかなくなってい件は、JDK 1.6.0_2x で修正済
- Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException: java.lang.Byte cannot be cast to java.lang.Long
# -*- encoding: utf-8 -*-
include Java
java_import java.awt.BorderLayout
java_import java.awt.Color
java_import java.awt.Dimension
java_import java.util.Random
java_import java.util.Vector
java_import java.util.concurrent.Executors
java_import javax.swing.BorderFactory
java_import javax.swing.JButton
java_import javax.swing.JPanel
java_import javax.swing.JProgressBar
java_import javax.swing.JScrollPane
java_import javax.swing.JTable
java_import javax.swing.SwingWorker
java_import javax.swing.table.DefaultTableCellRenderer
java_import javax.swing.table.DefaultTableModel
java_import javax.swing.table.TableCellRenderer
PROGRESS_IDX = 2
class TestModel < DefaultTableModel
@@number = 0
@@columns = {
:name=>["No.", "Name", "Progress"],
:editable=>[false, false, false],
:class=>[java.lang.Integer, java.lang.String, java.lang.Integer],
}
def add_test(test)
self.add_row Vector.new([@@number, test.tname, test.progress])
#self.add_row [@@number, test.tname, test.progress].to_java
@@number = @@number+1
end
def getColumnCount
return @@columns[:name].size
end
def getColumnName(modelIndex)
return @@columns[:name][modelIndex]
end
def isCellEditable(row, col)
return @@columns[:editable][col]
end
def getColumnClass(modelIndex)
return @@columns[:class][modelIndex]
end
end
class Test
attr_accessor :tname
attr_accessor :progress
def initialize(tname = nil, progress = 0)
self.tname = tname
self.progress = java.lang.Integer.new(progress)
end
end
class MainPanel < JPanel
def initialize
super BorderLayout.new
model = TestModel.new
model.add_test Test.new("aaaa", 100)
table = JTable.new model
table.auto_create_row_sorter = true
table.fills_viewport_height = true
table.show_horizontal_lines = false
table.show_vertical_lines = false
table.intercell_spacing = Dimension.new
table.put_client_property "terminateEditOnFocusLost", true
column = table.column_model.column 0
column.max_width = 60
column.min_width = 60
column.resizable = false
column = table.column_model.column PROGRESS_IDX
bar = JProgressBar.new 0, 100
bar.border = BorderFactory.createEmptyBorder 1,1,1,1
renderer = table.get_default_renderer java.lang.Object
column.set_cell_renderer do |table, obj, isSelected, hasFocus, row, column|
text = "Done"
if obj<0
text = "Canceled"
elsif obj<100
bar.value = obj
return bar
end
return renderer.getTableCellRendererComponent(
table, text, isSelected, hasFocus, row, column)
end
executor = Executors.new_cached_thread_pool;
button = JButton.new "add dummy task"
button.add_action_listener do
worker = ProgressWorker.new model
#worker.addPropertyChangeListener ProgressListener.new(model)
model.add_test Test.new("example", 0)
worker.execute
#executor.execute worker #JDK 1.6.0_18
end
self.add button, BorderLayout::SOUTH
self.add JScrollPane.new(table)
self.preferred_size = Dimension.new 320, 240
end
end
class ProgressWorker < SwingWorker
attr_accessor :model
def initialize(model)
super()
@model = model
@key = model.row_count
@sleepDummy = 0.1
@lengthOfTask = Random.new.nextInt(60) + 1
end
def doInBackground
prev = 0
current = 0
while current<@lengthOfTask && !self.cancelled?
current = current + 1
begin
sleep @sleepDummy
rescue InterruptedException => e
proxied_e = JavaUtilities.wrap e.cause
proxied_e.print_stack_trace
self.publish [-1].to_java(:Integer)
break
end
#puts "#{@key}: #{i}"
i = 100*current/@lengthOfTask
self.publish [i].to_java :Integer
#self.firePropertyChange("progress", prev, i)
##self.publish i
prev = i
end
return @sleepDummy*@lengthOfTask
end
def process(chunks)
chunks.each {|i|
#@model.set_value_at i, @key, PROGRESS_IDX
#Exception in thread "AWT-EventQueue-0" java.lang.ClassCastException:
# java.lang.Byte cannot be cast to java.lang.Long
@model.set_value_at java.lang.Integer.new(i), @key, PROGRESS_IDX
}
end
def done
text = nil
i = -1
if self.cancelled?
text = "Canceled"
else
begin
i = self.get
text = "Done"
rescue Exception => e
text = "InterruptedException"
proxied_e = JavaUtilities.wrap e.cause
proxied_e.print_stack_trace
end
end
puts "#{@key}: #{text} : #{i}s"
end
end
import javax.swing.UIManager
import javax.swing.WindowConstants
def create_and_show_GUI
begin
UIManager.look_and_feel = UIManager.system_look_and_feel_class_name
rescue Exception => e
proxied_e = JavaUtilities.wrap e.cause
proxied_e.print_stack_trace
end
frame = javax.swing.JFrame.new "JRuby Swing JTable"
frame.default_close_operation = WindowConstants::EXIT_ON_CLOSE
frame.content_pane.add MainPanel.new
frame.pack
frame.location_relative_to = nil
frame.visible = true
end
def run; create_and_show_GUI; end
java.awt.EventQueue.invokeLater self
JRubyでリソース(URL)のエントリを取得してSwingで使用する
ソースコードの文字コード(エンコーディング)
- 1.7.0以前?は、*.rbの文字コードはUTF-8固定だった?
- 1.7.0から?は、ソースコードの先頭にマジックコメント
# -*- encoding: utf-8 -*-
include Java
java_import javax.swing.UIManager
java_import javax.swing.WindowConstants
java_import javax.swing.table.DefaultTableModel
def make_ui
p = javax.swing.JPanel.new java.awt.BorderLayout.new
p.add javax.swing.JLabel.new("日本語")
return p
end
def run #Override
begin
UIManager.look_and_feel = UIManager.system_look_and_feel_class_name
rescue Exception => e
proxied_e = JavaUtilities.wrap e.cause
proxied_e.print_stack_trace
end
f = javax.swing.JFrame.new "タイトル"
f.default_close_operation = WindowConstants::EXIT_ON_CLOSE
f.content_pane.add make_ui
f.set_size(320, 240)
f.location_relative_to = nil
f.visible = true
end
java.awt.EventQueue.invoke_later self
その他、JRuby + One-Liner などのサンプル
JRuby One-Liner で、UIManagerのDefaults.keySetを一覧表示する
> jruby -rjava -e "javax.swing.UIManager.lookAndFeelDefaults.keySet.each{|o| puts o}"
One-Liner での文字コード
> chcp 現在のコード ページ: 932
> jruby -J-Dfile.encoding=UTF-8 -rjava -e "puts java.net.URLEncoder.encode('日本語','UTF-8')" > jruby -J-Dfile.encoding=UTF-8 -rjava -e 'puts java.net.URLEncoder.encode(""日本語"",""UTF-8"")' > jruby --1.9 -U -rjava -e "puts java.net.URLEncoder.encode('日本語','UTF-8')" > jruby -J-Dfile.encoding=UTF-8 -ruri -e "puts URI.encode('日本語')" > jruby -ruri -e "puts URI.encode('日本語'.encode('UTF-8'))" %E6%97%A5%E6%9C%AC%E8%AA%9E
> jruby --1.9 -rjava -e "puts java.net.URLEncoder.encode('日本語','MS932')" > jruby --1.9 -ruri -e "puts URI.encode_www_form_component('日本語')" > jruby -ruri -e "puts URI.encode('日本語')" %93%FA%96%7B%8C%EA
JRuby 1.7.0.preview1 でArgumentErrorが発生する場合
- JRuby 1.7.0.preview1 で以下のようなArgumentErrorが発生する場合、-J-Dfile.encoding=UTF-8 でOK?
- set LANG=ja_JP.UTF-8 は、JRubyでは効果がない?
「-J-Dfile.encoding=UTF-8」は「-E UTF-8」と同じ?
>jruby -v jruby 1.7.0 (1.9.3p203) 2012-10-22 ff1ebbe on Java HotSpot(TM) 64-Bit Server VM 1.7.0_09-b05 [Windows 7-amd64] >chcp 現在のコード ページ: 932 >jruby -J-Dfile.encoding=UTF-8 -ruri -e "puts URI.encode('日本語')" %E6%97%A5%E6%9C%AC%E8%AA%9E >jruby -E UTF-8 -ruri -e "puts URI.encode('日本語')" %93%FA%96%7B%8C%EA
- JRuby 1.7.0.preview2 では、「-E UTF-8」の方が良さそう
lines = src.rstrip.split(/\r?\n/).map {|line| line.chomp }
C:\pukiwiki2markdown>jruby p2m.rb wiki ArgumentError: invalid byte sequence in Windows-31J split at org/jruby/RubyString.java:4643 to_html at p2m.rb:45 main at p2m.rb:219 each at org/jruby/RubyArray.java:1611 main at p2m.rb:214 (root) at p2m.rb:234
C:\pukiwiki2markdown>jruby -J-Dfile.encoding=UTF-8 p2m.rb wiki wiki/2010-04-12-swing-leaftreecelleditor.markdown wiki/2007-06-18-swing-leftclippedcombobox.markdown ... C:\pukiwiki2markdown>jruby -E UTF-8 p2m.rb wiki wiki/2011-07-18-swing-listmouseselection.markdown ...
JRuby で PukiWiki のファイル名をデコード
if ARGV[0] == nil then
while line = STDIN.gets
STDOUT.puts "#{line.gsub!(/[A-F\d]{2}/) {|x| [x.hex].pack('C*')} }"
end
else
Dir::glob("*.#{ARGV[0]}").each {|f|
puts "#{f.gsub!(/[A-F\d]{2}/) {|x| [x.hex].pack('C*')} }"
}
end
> ls *.txt | jruby decode.rb > ls *.txt | jruby -pe "$_.gsub!(/[A-F\d]{2}/) {|x| [x.hex].pack('C*')}"
PukiWiki形式のテキストをMarkdown形式のファイルに変換する
PukiWiki形式のテキストをMarkdown形式のファイルに変換するに移動
PukiWiki形式のテキストをWiki形式(Google Project Hosting)のファイルに変換する
- PukiWiki形式のテキストをMarkdown形式のファイルに変換するを改変して、PukiWiki形式のテキストファイルを、Google Project Hosting の Wiki形式ファイルに変換
jruby -E UTF-8 p2w.rb ./wiki ../java-swing-tips-wiki
- p2w.rb
- https://code.google.com/p/java-swing-tips/w/list
- WikiSyntax - support - The reference to the wiki syntax for Google Code projects - User support for Google Project Hosting - Google Project Hosting
- どちらもWiki なので、変換は簡単
- ArrowButtonm, BorderFactory などが自動リンクになる
リンク
- JRuby + SWT = Future Cross Platform Ruby Desktop App Development?
- JRuby + SWT サンプル
- via Using SWT and Ruby for your GUIs