This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package jp.example; | |
| import java.io.File; | |
| import org.jodconverter.core.DocumentConverter; | |
| import org.jodconverter.core.office.OfficeException; | |
| import org.jodconverter.core.office.OfficeManager; | |
| import org.jodconverter.local.LocalConverter; | |
| import org.jodconverter.local.office.LocalOfficeManager; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 175行目あたり --> | |
| <java-config classpath-suffix="" debug-options="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=9009" system-classpath=""> | |
| <!-- 下記最後尾に追加 --> | |
| <jvm-options>-Dfile.encoding=UTF-8</jvm-options> | |
| </java-config> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>テスト</title> | |
| </head> | |
| <body> | |
| <main> | |
| <article> | |
| <div style="height:100px; width:300px; overflow-y:scroll;"> | |
| <table border="1" id="tb"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>テスト</title> | |
| <script src="jquery.js"></script> | |
| <script src="printThis.js"></script> | |
| </head> | |
| <body> | |
| <main> | |
| <article> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.File; | |
| import org.jodconverter.DocumentConverter; | |
| import org.jodconverter.LocalConverter; | |
| import org.jodconverter.office.LocalOfficeManager; | |
| import org.jodconverter.office.OfficeException; | |
| import org.jodconverter.office.OfficeManager; | |
| public class LibrePdfOutputTest { | |
| public static final String SRC_FILE_PATH = "D:\\temp\\test.tmp"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> | |
| </head> | |
| <body> | |
| <script> | |
| $(document).ready(function(){ | |
| $.ajax({ | |
| url: 'http://jvndb.jvn.jp/myjvn?method=getVulnDetailInfo&vulnId=JVNDB-2017-004616', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> | |
| </head> | |
| <body> | |
| <script> | |
| $(document).ready(function(){ | |
| $('#submit').on("click", function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from flask import Flask | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def index(): | |
| name = "This is the route." | |
| return name | |
| @app.route('/hello') | |
| def hello(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from flask import Flask, render_template | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def index(): | |
| return render_template('index.html', title='test', userName='kentei') | |
| @app.route('/hello') | |
| def hello(): | |
| name = "Hello world!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from flask import Flask, render_template, request | |
| app = Flask(__name__) | |
| @app.route('/') | |
| def index(): | |
| return render_template('index.html', title='test', userName='kentei') | |
| @app.route('/hello', methods=['GET','POST']) | |
| def hello(): | |
| if request.method == 'POST': |
OlderNewer