fikkercdn破解版linux版


fikkercdn 破解版 linux版 亲测可用。
资源截图
代码片段和文件信息
/**
 * @license Highcharts JS v2.3.3 (2012-11-02)
 *
 * (c) 20012-2014
 *
 * Author: Gert Vaartjes
 *
 * License: www.highcharts.com/license
 */
package com.highcharts.export.controller;

import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.NoSuchElementException;
import java.util.concurrent.TimeoutException;

import javax.annotation.Resource;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.commons.io.IOUtils;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;

import com.highcharts.export.converter.SVGConverter;
import com.highcharts.export.converter.SVGConverterException;
import com.highcharts.export.pool.PoolException;
import com.highcharts.export.util.MimeType;

@Controller
@RequestMapping(“/“)
public class ExportController extends HttpServlet {
private static final long serialVersionUID = 1L;
private static final Float MAX_WIDTH = 2000.0F;
private static final Float MAX_SCALE = 4.0F;
protected static Logger logger = Logger.getLogger(“exporter“);

/*for test*/
@Autowired
    private ServletContext servletContext;

/* end*/

@Resource(name = “svgConverter“)
private SVGConverter converter;

/* Catch All */
@RequestMapping(method = RequestMethod.POST)
public void exporter(
@RequestParam(value = “svg“ required = false) String svg
@RequestParam(value = “type“ required = false) String type
@RequestParam(value = “filename“ required = false) String filename
@RequestParam(value = “width“ required = false) String width
@RequestParam(value = “scale“ required = false) String scale
@RequestParam(value = “options“ required = false) String options
@RequestParam(value = “constr“ required = false) String constructor
@RequestParam(value = “callback“ required = false) String callback
HttpServletResponse response HttpServletRequest request)
throws ServletException IOException InterruptedException SVGConverterException NoSuchElementException PoolException TimeoutException {

long start1 = System.currentTimeMillis();

MimeType mime = getMime(type);
filename = getFilename(filename);
Float parsedWidth = widthToFloat(width);
Float

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-16 17:03  FikkerCDN
     目录           0  2018-05-16 17:03  FikkerCDNlocal
     目录           0  2014-10-21 07:47  FikkerCDNlocalapache2
     文件       15159  2004-11-21 12:50  FikkerCDNlocalapache2ABOUT_APACHE.txt
     目录           0  2014-10-21 07:47  FikkerCDNlocalapache2in
     文件       65600  2006-07-27 16:55  FikkerCDNlocalapache2inab.exe
     文件       41041  2006-07-27 16:52  FikkerCDNlocalapache2inApacheMonitor.exe
     文件        9143  2006-07-27 17:00  FikkerCDNlocalapache2indbmmanage.pl
     文件       53322  2006-07-27 16:55  FikkerCDNlocalapache2inhtcacheclean.exe
     文件       77891  2006-07-27 16:55  FikkerCDNlocalapache2inhtdbm.exe
     文件       69702  2006-07-27 16:56  FikkerCDNlocalapache2inhtdigest.exe
     文件       73798  2006-07-27 16:56  FikkerCDNlocalapache2inhtpasswd.exe
     文件       20539  2006-07-27 16:49  FikkerCDNlocalapache2inhttpd.exe
     目录           0  2014-10-21 07:47  FikkerCDNlocalapache2iniconv
     文件       24665  2006-07-27 16:11  FikkerCDNlocalapache2iniconvadobe-stdenc.so
     文件       24665  2006-07-27 16:11  FikkerCDNlocalapache2iniconvadobe-symbol.so
     文件       24668  2006-07-27 16:11  FikkerCDNlocalapache2iniconvadobe-zdingbats.so
     文件      118865  2006-07-27 16:11  FikkerCDNlocalapache2iniconvig5.so
     文件       86108  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcns11643-plane1.so
     文件       82013  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcns11643-plane14.so
     文件       82012  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcns11643-plane2.so
     文件       20562  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp037.so
     文件       20562  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp038.so
     文件       24660  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp10000.so
     文件       24660  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp10006.so
     文件       24660  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp10007.so
     文件       24660  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp10029.so
     文件       20563  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp1006.so
     文件       24660  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp10079.so
     文件       24660  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp10081.so
     文件       20563  2006-07-27 16:11  FikkerCDNlocalapache2iniconvcp1026.so
............此处省略1702个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)