首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > Ruby Rails >

Ruby操作word时遇到中文有关问题

2012-12-25 
Ruby操作word时遇到中文问题# coding: utf-8require win32ole?wordWIN32OLE.new(word.Application)wo

Ruby操作word时遇到中文问题

# coding: utf-8

require "win32ole"

?

word=WIN32OLE.new('word.Application')

word.visible=true

doc=word.Documents

doc.add

?

s=word.Selection

?

s.TypeText('Text'=>'唇形')

?

#doc.save

?

?

#文件头要加上 ?# coding: utf-8

#文件以utf-8 保存

热点排行