| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <!DOCTYPE html> | 
					
						
							| 
									
										
										
										
											2014-01-14 15:06:13 +00:00
										 |  |  | <!-- xlsx.js (C) 2013-2014 SheetJS http://sheetjs.com --> | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | <!-- vim: set ts=2: --> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <html> | 
					
						
							|  |  |  | <head> | 
					
						
							|  |  |  | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | 
					
						
							|  |  |  | <title>JS-XLSX Live Demo</title> | 
					
						
							|  |  |  | <style> | 
					
						
							|  |  |  | #drop{ | 
					
						
							|  |  |  | 	border:2px dashed #bbb; | 
					
						
							|  |  |  | 	-moz-border-radius:5px; | 
					
						
							|  |  |  | 	-webkit-border-radius:5px; | 
					
						
							|  |  |  | 	border-radius:5px; | 
					
						
							|  |  |  | 	padding:25px; | 
					
						
							|  |  |  | 	text-align:center; | 
					
						
							|  |  |  | 	font:20pt bold,"Vollkorn";color:#bbb | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #b64data{ | 
					
						
							|  |  |  | 	width:100%; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </style> | 
					
						
							|  |  |  | </head> | 
					
						
							|  |  |  | <body> | 
					
						
							| 
									
										
										
										
											2014-01-28 16:35:26 +00:00
										 |  |  | <b>JS-XLSX (XLSX/XLSB/XLSM) Live Demo</b><br /> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <a href="https://github.com/SheetJS/js-xlsx">Github Repo</a><br /> | 
					
						
							|  |  |  | <a href="https://github.com/SheetJS/js-xlsx/issues">Issues?  Something look weird?  Click here and report an issue</a><br /> | 
					
						
							|  |  |  | <input type="radio" name="format" value="csv" checked> CSV<br> | 
					
						
							|  |  |  | <input type="radio" name="format" value="json"> JSON<br> | 
					
						
							|  |  |  | <input type="radio" name="format" value="form"> FORMULAE<br> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-28 16:35:26 +00:00
										 |  |  | <div id="drop">Drop an XLSX or XLSM or XLSB file here to see sheet data.</div> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <textarea id="b64data">... or paste a base64-encoding here</textarea> | 
					
						
							|  |  |  | <input type="button" id="dotext" value="Click here to process the base64 text" onclick="b64it();"/> | 
					
						
							|  |  |  | <pre id="out"></pre> | 
					
						
							|  |  |  | <br /> | 
					
						
							| 
									
										
										
										
											2014-05-17 18:52:07 +00:00
										 |  |  | <script src="shim.js"></script> | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | <script src="jszip.js"></script> | 
					
						
							|  |  |  | <script src="xlsx.js"></script> | 
					
						
							|  |  |  | <script> | 
					
						
							| 
									
										
										
										
											2014-01-14 15:06:13 +00:00
										 |  |  | var rABS = typeof FileReader !== "undefined" && typeof FileReader.prototype !== "undefined" && typeof FileReader.prototype.readAsBinaryString !== "undefined"; | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | function fixdata(data) { | 
					
						
							|  |  |  | 	var o = "", l = 0, w = 10240; | 
					
						
							|  |  |  | 	for(; l<data.byteLength/w; ++l) | 
					
						
							|  |  |  | 		o+=String.fromCharCode.apply(null,new Uint8Array(data.slice(l*w,l*w+w))); | 
					
						
							|  |  |  | 	o+=String.fromCharCode.apply(null, new Uint8Array(data.slice(o.length))); | 
					
						
							|  |  |  | 	return o; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | function xlsxworker(data, cb) { | 
					
						
							|  |  |  | 	var worker = new Worker('./xlsxworker.js'); | 
					
						
							|  |  |  | 	worker.onmessage = function(e) { | 
					
						
							|  |  |  | 		switch(e.data.t) { | 
					
						
							|  |  |  | 			case 'ready': break; | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 			case 'e': console.error(e.data.d); break; | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 			case 'xlsx': cb(JSON.parse(e.data.d)); break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | 	var arr = rABS ? data : btoa(fixdata(data)); | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 	worker.postMessage({d:arr,b:rABS}); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function get_radio_value( radioName ) { | 
					
						
							|  |  |  | 	var radios = document.getElementsByName( radioName ); | 
					
						
							|  |  |  | 	for( var i = 0; i < radios.length; i++ ) { | 
					
						
							|  |  |  | 		if( radios[i].checked ) { | 
					
						
							|  |  |  | 			return radios[i].value; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function to_json(workbook) { | 
					
						
							|  |  |  | 	var result = {}; | 
					
						
							|  |  |  | 	workbook.SheetNames.forEach(function(sheetName) { | 
					
						
							|  |  |  | 		var roa = XLSX.utils.sheet_to_row_object_array(workbook.Sheets[sheetName]); | 
					
						
							|  |  |  | 		if(roa.length > 0){ | 
					
						
							|  |  |  | 			result[sheetName] = roa; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function to_csv(workbook) { | 
					
						
							|  |  |  | 	var result = []; | 
					
						
							|  |  |  | 	workbook.SheetNames.forEach(function(sheetName) { | 
					
						
							|  |  |  | 		var csv = XLSX.utils.sheet_to_csv(workbook.Sheets[sheetName]); | 
					
						
							|  |  |  | 		if(csv.length > 0){ | 
					
						
							|  |  |  | 			result.push("SHEET: " + sheetName); | 
					
						
							|  |  |  | 			result.push(""); | 
					
						
							|  |  |  | 			result.push(csv); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	return result.join("\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function to_formulae(workbook) { | 
					
						
							|  |  |  | 	var result = []; | 
					
						
							|  |  |  | 	workbook.SheetNames.forEach(function(sheetName) { | 
					
						
							|  |  |  | 		var formulae = XLSX.utils.get_formulae(workbook.Sheets[sheetName]); | 
					
						
							|  |  |  | 		if(formulae.length > 0){ | 
					
						
							|  |  |  | 			result.push("SHEET: " + sheetName); | 
					
						
							|  |  |  | 			result.push(""); | 
					
						
							|  |  |  | 			result.push(formulae.join("\n")); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 	return result.join("\n"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var tarea = document.getElementById('b64data'); | 
					
						
							|  |  |  | function b64it() { | 
					
						
							|  |  |  | 	var wb = XLSX.read(tarea.value, {type: 'base64'}); | 
					
						
							|  |  |  | 	process_wb(wb); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function process_wb(wb) { | 
					
						
							|  |  |  | 	var output = ""; | 
					
						
							|  |  |  | 	switch(get_radio_value("format")) { | 
					
						
							|  |  |  | 		case "json": | 
					
						
							|  |  |  | 		output = JSON.stringify(to_json(wb), 2, 2); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case "form": | 
					
						
							|  |  |  | 			output = to_formulae(wb); | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 		output = to_csv(wb); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if(out.innerText === undefined) out.textContent = output; | 
					
						
							|  |  |  | 	else out.innerText = output; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var drop = document.getElementById('drop'); | 
					
						
							|  |  |  | function handleDrop(e) { | 
					
						
							|  |  |  | 	e.stopPropagation(); | 
					
						
							|  |  |  | 	e.preventDefault(); | 
					
						
							|  |  |  | 	var files = e.dataTransfer.files; | 
					
						
							|  |  |  | 	var i,f; | 
					
						
							|  |  |  | 	for (i = 0, f = files[i]; i != files.length; ++i) { | 
					
						
							|  |  |  | 		var reader = new FileReader(); | 
					
						
							|  |  |  | 		var name = f.name; | 
					
						
							|  |  |  | 		reader.onload = function(e) { | 
					
						
							|  |  |  | 			var data = e.target.result; | 
					
						
							|  |  |  | 			if(typeof Worker !== 'undefined') { | 
					
						
							|  |  |  | 				xlsxworker(data, process_wb); | 
					
						
							|  |  |  | 			} else { | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 				var wb; | 
					
						
							|  |  |  | 				if(rABS) { | 
					
						
							|  |  |  | 					wb = XLSX.read(data, {type: 'binary'}); | 
					
						
							|  |  |  | 				} else { | 
					
						
							| 
									
										
										
										
											2014-02-17 21:45:37 +00:00
										 |  |  | 				var arr = fixdata(data); | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 					wb = XLSX.read(btoa(arr), {type: 'base64'}); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				process_wb(wb); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2013-12-26 05:38:44 +00:00
										 |  |  | 		if(rABS) reader.readAsBinaryString(f); | 
					
						
							|  |  |  | 		else reader.readAsArrayBuffer(f); | 
					
						
							| 
									
										
										
										
											2012-12-03 19:47:44 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function handleDragover(e) { | 
					
						
							|  |  |  | 	e.stopPropagation(); | 
					
						
							|  |  |  | 	e.preventDefault(); | 
					
						
							|  |  |  | 	e.dataTransfer.dropEffect = 'copy'; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if(drop.addEventListener) { | 
					
						
							|  |  |  | 	drop.addEventListener('dragenter', handleDragover, false); | 
					
						
							|  |  |  | 	drop.addEventListener('dragover', handleDragover, false); | 
					
						
							|  |  |  | 	drop.addEventListener('drop', handleDrop, false); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | <script type="text/javascript"> | 
					
						
							|  |  |  | 	var _gaq = _gaq || []; | 
					
						
							|  |  |  | 	_gaq.push(['_setAccount', 'UA-36810333-1']); | 
					
						
							|  |  |  | 	_gaq.push(['_trackPageview']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	(function() { | 
					
						
							|  |  |  | 		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | 
					
						
							|  |  |  | 		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | 
					
						
							|  |  |  | 		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | 
					
						
							|  |  |  | 	})(); | 
					
						
							|  |  |  | </script> | 
					
						
							|  |  |  | </body> | 
					
						
							|  |  |  | </html> |