우선 이거부터 불러와야됨


 if (typeof Object.assign != 'function') {
  // Must be writable: true, enumerable: false, configurable: true
  Object.defineProperty(Object, "assign", {
    value: function assign(target, varArgs) { // .length of function is 2
      'use strict';
      if (target == null) { // TypeError if undefined or null
        throw new TypeError('Cannot convert undefined or null to object');
      }

      var to = Object(target);

      for (var index = 1; index < arguments.length; index++) {
        var nextSource = arguments[index];

        if (nextSource != null) { // Skip over if undefined or null
          for (var nextKey in nextSource) {
            // Avoid bugs when hasOwnProperty is shadowed
            if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {
              to[nextKey] = nextSource[nextKey];
            }
          }
        }
      }
      return to;
    },
    writable: true,
    configurable: true
  });
}
 

'JAVA > Jquery' 카테고리의 다른 글

jquery 프린트하기  (0) 2018.02.01
jquery 천단위콤마 정규식  (0) 2016.12.23
jquery js불러오기  (0) 2016.12.21
jquery 쿠키조회  (0) 2016.12.09
jquery 하루동안 팝업안보이게하는 쿠키함수  (0) 2016.12.09
블로그 이미지

왕왕왕왕

,

package excelupload;

import java.io.File;

import java.io.FileNotFoundException;

import java.io.FileOutputStream;

import java.io.IOException;

import java.util.List;

import org.apache.poi.hssf.usermodel.HSSFCell;

import org.apache.poi.hssf.usermodel.HSSFCellStyle;

import org.apache.poi.hssf.usermodel.HSSFFont;

import org.apache.poi.hssf.usermodel.HSSFRow;

import org.apache.poi.hssf.usermodel.HSSFSheet;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;

import org.apache.poi.hssf.util.HSSFColor;
import org.apache.poi.ss.usermodel.CellType;
import org.apache.poi.ss.usermodel.Row;

public class ExcelUtils {
 public static void main(String[] args) {
  HSSFWorkbook workbook = new HSSFWorkbook(); // 새 엑셀 생성
  HSSFSheet sheet = workbook.createSheet("시트명"); // 새 시트(Sheet) 생성
  HSSFRow row  = null;
  HSSFCell cell = null;
  for (int j = 0; j < 10; j++) {
   row = sheet.createRow(j); // 엑셀의 행은 0번부터 시작
   for (int i = 0; i < 10; i++) {
    cell = row.createCell(i); // 행의 셀은 0번부터 시작
    row.createCell(1, CellType.STRING);
    cell.setCellValue("테스트 데이터" + i); // 생성한 셀에 데이터 삽입
   }
  }

  try {
   FileOutputStream fileoutputstream = new FileOutputStream("C:\\Users\\k\\Desktop\\dd.xls");
   workbook.write(fileoutputstream);
   fileoutputstream.close();
   System.out.println("엑셀파일생성성공");
  } catch (IOException e) {
   e.printStackTrace();
   System.out.println("엑셀파일생성실패");
  }
 }

}

 

 출처 http://boxfoxs.tistory.com/304

블로그 이미지

왕왕왕왕

,

$(document).ready(  function() {


 $("#print").click(function(){
  var printWindow = window.open("", "", "width=1000,height=500");
  printWindow.document.write("<img src='http://www.smotor.com/kr/images/event/cupon1.jpg' style='width:100%;'>");
 
  printWindow.document.write("<script>  setTimeout(function(){ window.print(); }, 1000); </script>");
  printWindow.document.close(); // IE >= 10에 필요
        printWindow.focus();

  return false; 
  
 });
});

 

 

 

블로그 이미지

왕왕왕왕

,
<configuration>
    <settings>
        <!-- 값이 null인 컬럼 누락 방지 -->
        <setting name="callSettersOnNulls" value="true">
    </setting></settings>
    <typealiases>
    </typealiases>
</configuration>



configuration.xml 에 다 셋팅하면된다

블로그 이미지

왕왕왕왕

,

(\d)(?=(?:\d{3})+(?!\d))


function addComma(n) {
 var reg = /(^[+-]?\d+)(\d{3})/;
 n += '';

 while (reg.test(n)) {
  n = n.replace(reg, '$1' + ',' + '$2');
 }

 return n;
}

블로그 이미지

왕왕왕왕

,

jquery js불러오기

JAVA/Jquery 2016. 12. 21. 10:29
function loadJQuery() {
var oScript = document.createElement("script");
oScript.type = "text/javascript";
oScript.charset = "utf-8";
oScript.src = "http://code.jquery.com/jquery-1.6.2.min.js";
document.getElementsByTagName("head")[0].appendChild(oScript);
}


'JAVA > Jquery' 카테고리의 다른 글

jquery 프린트하기  (0) 2018.02.01
jquery 천단위콤마 정규식  (0) 2016.12.23
jquery 쿠키조회  (0) 2016.12.09
jquery 하루동안 팝업안보이게하는 쿠키함수  (0) 2016.12.09
JQUERY dialog 기본형태  (0) 2016.12.09
블로그 이미지

왕왕왕왕

,

윈도우 UEFI 모드로 리커버리 모드 만들기 http://kchc.tistory.com/1986

'' 카테고리의 다른 글

젠킨스 구동  (0) 2016.10.07
windbg 링크  (0) 2016.03.19
서로 잘어울리는 색상  (0) 2015.11.07
잡메모  (0) 2015.06.17
개같은 오류증상들 or 팁  (0) 2015.06.11
블로그 이미지

왕왕왕왕

,

jquery 쿠키조회

JAVA/Jquery 2016. 12. 9. 14:11

function getCookie(key) {

var cook = document.cookie + ";";

var idx = cook.indexOf(key, 0);

var val = "";

if (idx != -1) {

cook = cook.substring(idx, cook.length);

begin = cook.indexOf("=", 0) + 1;

end = cook.indexOf(";", begin);

val = unescape( cook.substring(begin, end) );

}

return val;

}

'JAVA > Jquery' 카테고리의 다른 글

jquery 천단위콤마 정규식  (0) 2016.12.23
jquery js불러오기  (0) 2016.12.21
jquery 하루동안 팝업안보이게하는 쿠키함수  (0) 2016.12.09
JQUERY dialog 기본형태  (0) 2016.12.09
jquery ajax 기본형태  (0) 2016.12.08
블로그 이미지

왕왕왕왕

,