当前位置: 首页 > news >正文

比较好的平面设计网站网站如何制作建设

比较好的平面设计网站,网站如何制作建设,工信部网站备案审核,手机登录网站后台poi-phpvarsion 0.1(2013/10/21)このプラグインはJavaのpoiをPHPから叩いてエクセルを入出力するプラグインです。必須要件jdk1.7.0_40poi-3.9opencsv-2.3使い方①poi-phpを任意の場所に設置②PHPを記述//デフォルト読み込みrequire_once(poi-php.phpのディレクトリパス);$this…poi-phpvarsion 0.1(2013/10/21)このプラグインはJavaのpoiをPHPから叩いてエクセルを入出力するプラグインです。必須要件jdk1.7.0_40poi-3.9opencsv-2.3使い方①poi-phpを任意の場所に設置②PHPを記述//デフォルト読み込みrequire_once(poi-php.phpのディレクトリパス);$this-PoiPHP new PoiPHP();$this-PoiPHP-settings(array(poi_path poi-3.9のディレクトリパス,opencsv_path opencsv-2.3.jarのファイルパス,));//Excel出力//1シート目の1行目1列にaを文字列として入力$this-ExcelExport-addString(0,0,0,a);//入出力のファイルはフルパスで指定する。$readfile dirname(__FILE__) . /test.xls;$outFile dirname(__FILE__) . /export.xls;$this-ExcelExport-export($readfile, $outFile);//Excel入力//入出力のファイルはフルパスで指定する。$readfile dirname(__FILE__) . /test.xls;$outFile dirname(__FILE__) . /export.csv;$this-ExcelImport-import($readfile, $outFile, 0, 2, 1, 4);を記述。※注意点Javaのバージョンが合わないと動作しません。/javaディレクトリ内には.javaファイルも置いているので、javaのバージョンを合わせられない場合には自分でコンパイルしたら動くかもしれないです。-----------以下関数の説明です----------/** addString* 文字列の追加* 参照セルの設定を入れるとスタイルをコピーしてきます。** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (string)$string 文字列* (int)$orgrow 参照セルの行番号* (int)$orgcol 参照セルの列番号* (int)$orgsheet 参照セルのシート番号*/public function addString($sheet,$row,$col,$string,$orgrow null,$orgcol null,$orgsheet null){/** addNumber* 数値の追加* 参照セルの設定を入れるとスタイルをコピーしてきます。** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (int)$integer 数値* (int)$orgrow 参照セルの行番号* (int)$orgcol 参照セルの列番号* (int)$orgsheet 参照セルのシート番号*/public function addNumber($sheet,$row,$col,$integer,$orgrow null,$orgcol null,$orgsheet null)/** addFormula* 数値の追加* 参照セルの設定を入れるとスタイルをコピーしてきます。** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (string)$formula 関数* (int)$orgrow 参照セルの行番号* (int)$orgcol 参照セルの列番号* (int)$orgsheet 参照セルのシート番号*/public function addFormula($sheet,$row,$col,$formula,$orgrow null,$orgcol null,$orgsheet null)/** setCellMerge* セルのマージ** (int)$sheet シート番号* (int)$rowst 開始行番号* (int)$rowen 終了行番号* (int)$colst 開始列番号* (int)$colen 終了列番号*/public function setCellMerge($sheet,$rowst,$rowen,$colst,$colen)/** addSheet* シートの追加** (int)$org_sheet 大元のシート番号* (int)$count シート追加数*/public function addSheet($org_sheet,$count)/** rmSheet* シートの削除** (int)$sheet シート番号*/public function rmSheet($sheet)/** setSheetname* シート名の設定** (int)$sheet シート番号* (int)$sheet シート名*/public function setSheetname($sheet,$sheetname)/** copyCell* セルのコピー** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (int)$orgrow 参照セルの行番号* (int)$orgcol 参照セルの列番号* (int)$orgsheet 参照セルのシート番号*/public function copyCell($sheet,$row,$col,$orgsheet,$orgrow,$orgcol)/** copyStyle* スタイルのコピー** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (int)$orgrow 参照セルの行番号* (int)$orgcol 参照セルの列番号* (int)$orgsheet 参照セルのシート番号*/public function copyStyle($sheet,$row,$col,$orgsheet,$orgrow,$orgcol)/** setBorder* 罫線の設定** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (string)$topbstyle 上罫線の設定* (string)$topbcolor 上罫線の色* (string)$leftbstyle 左罫線の設定* (string)$leftbcolor 左罫線の色* (string)$rightbstyle 右罫線の設定* (string)$rightbcolor 右罫線の色* (string)$bottombstyle 下罫線の設定* (string)$bottombcolor 下罫線の色* 色の種類、罫線の種類は下記参照*/public function setBorder($sheet,$row,$col,$topbstyle,$topbcolor,$leftbstyle,$leftbcolor,$rightbstyle,$rightbcolor,$bottombstyle,$bottombcolor){/** setCellColor* セルの色設定** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (string)$cellcolor セルの色(前景色)の設定* (string)$backcolor 背景色の設定* (string)$fillpattern 塗りつぶしパターンの設定* 色の種類、塗りつぶしパターンの種類は下記参照*/public function setCellColor($sheet,$row,$col,$cellcolor,$backcolor null,$fillpattern SOLID_FOREGROUND)/** setFontSetting* セルの色設定** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (string)$fontcolor フォントの色設定* (int)$fontsize フォントのサイズ* (string)$font フォントの設定 (MS コジック)など文字列で* (bool)$italic イタリックの設定* (bool)$bold 太字の設定* (bool)$strikeout 打ち消し線の設定* (string)$underline 下線の設定* 色の種類、下線の種類は下記参照*/public function setFontSetting($sheet,$row,$col,$fontcolor null,$fontsize null,$font null,$italic null,$bold null,$strikeout null,$underline null)/** addImage* 画像の追加* 基本は画像パスまで。* それ以降のパスはすべて指定をしないと動作しない上、強引に画像が引き伸ばされるため奇麗に画像が表示されないので* resizeは別途行った上で設置を推奨** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (string)$image 画像パス* (int)$margin_x 左マージン* (int)$margin_y 上マージン* (int)$endrow 終端行* (int)$endcol 終端列* (int)$margin_rx 右マージン* (int)$margin_ry 下マージン*/public function addImage($sheet,$row,$col,$image,$margin_x 0,$margin_y 0,$endrow null,$endcol null, $margin_rx 0,$margin_ry 0){/** setAlign* セルの寄せ設定** (int)$sheet シート番号* (int)$row 行番号* (int)$col 列番号* (string)$align 寄せ* 寄せの種類は下記参照*/public function setAlign($sheet,$row,$col,$align)/** reset* セットした値のリセット*/public function reset()/** excelExport* Excelの出力。addStringなどの設定をすべて行って最後に出力をします。** param readfile 読み込みテンプレートファイル* param outFile 出力Excelファイル*/public function excelExport($readfile, $outFile)/** excelImport* Excelの入力。CSVファイルに出力をします。* 任意のシートの任意の場所から読み込みます。** $readfile 読み込みExcelファイル* $outFile 出力CSVファイル* $sheet 読み込むシート番号* $rowst 読み込み開始行* $colst 読み込み開始列* $colnum 列数* $file_encode CSVファイルの文字コード*/public function excelImport($readfile, $outFile, $sheet, $rowst, $colst, $colnum,$file_encode UTF-8)色AQUAAUTOMATICBLACKBLUEBLUE_GREYBRIGHT_GREENBROWNCORALCORNFLOWER_BLUEDARK_BLUEDARK_GREENDARK_REDDARK_TEALDARK_YELLOWGOLDGREENGREY_25_PERCENTGREY_40_PERCENTGREY_50_PERCENTGREY_80_PERCENTLAVENDERLEMON_CHIFFONLIGHT_CORNFLOWER_BLUELIGHT_GREENLIGHT_ORANGELIGHT_TURQUOISELIGHT_YELLOWLIMEMAROONOLIVE_GREENORANGEORCHIDPALE_BLUEPINKPLUMREDROSEROYAL_BLUESEA_GREENSKY_BLUETANTEALTURQUOISEVIOLETWHITEYELLOWAUTOMATIC罫線nonethinmediumdasheddottedthickdobblehairmedium_dasheddash_dotmedium_dash_dotdash_dot_dotmedium_dash_dot_dotslanted_dash_dot下線NONESINGLEDOUBLESINGLE_ACCOUNTINGDOUBLE_ACCOUNTING塗りつぶしNO_FILLSOLID_FOREGROUNDFINE_DOTSALT_BARSSPARSE_DOTSTHICK_HORZ_BANDSTHICK_VERT_BANDSTHICK_BACKWARD_DIAGTHICK_FORWARD_DIAGBIG_SPOTSBRICKSTHIN_HORZ_BANDSTHIN_VERT_BANDSTHIN_BACKWARD_DIAGTHIN_FORWARD_DIAGSQUARESDIAMONDS寄せLEFTRIGHTCENTERGENERALFILLJUSTIFYCENTER_SELECTIONLicenseThe MIT LisenceCopyright (c) 2013 Fusic Co., Ltd. (http://fusic.co.jp)Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.AuthorSatoru Hagiwara
http://www.yutouwan.com/news/209499/

相关文章:

  • 济南企业网站制wordpress首页home
  • 做酒的网站名字大全做插画的网站
  • 怎样做企业的网站首页免费绘画素材网站
  • 创意网站建设价格多少外贸推广服务公司
  • 运用photoshop设计网站首页女性购物平台排行榜
  • 做网站买完域名还要山东泰山新闻
  • 网站 集约化建设管理举措电商网站 技术
  • 网站seo文章网站备案信息如何注销吗
  • 网站前台显示数据库指定分类怎么做php网站建设kaicz
  • 中关村在线官方网站wordpress评论黑名单
  • 个人网站建设的收获硬件开发常用工具软件
  • 郑州网站建设 股权投资直通车关键词优化口诀
  • 阿里云怎么做淘宝客网站医院网站如何备案
  • 阿里云wordpress搭建网站网站开发需要的人员
  • 什么网站流量高建筑公司网站石家庄
  • 服务器可以吧网站做跳转吗朝阳网站建设推广
  • 郑州pc网站开发北京南站是高铁站吗
  • 济宁专业网站制作公司品牌建设新
  • 网站建设0基础菠菜网站做首存
  • 公司创建网站要多少钱成都市建设监理协会网站
  • 如何通过做网站赚钱北京网站建设有限公司
  • 成都 做网站wordpress用代码写页面模板
  • 营销网站制作多少钱网站制作老了
  • 公司想建个网站手机网站悬浮广告代码
  • 茂名网站设计宁波优化网站排名公司推荐
  • 万宁建设局网站wordpress 页面顺序
  • 正规的网站建设公佛山外贸网站建设新闻
  • 马鞍山网站设计制作展览展示设计网站
  • 建立网站要多少钱vps转移网站
  • 盘龙区网站建设外包学好wordpress怎么赚钱