V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  heqingpan  ›  全部回复第 5 页 / 共 5 页
回复总数  84
1  2  3  4  5  
2017-06-14 20:56:20 +08:00
回复了 fhlyhq 创建的主题 程序员 WCF 值得学吗,目前网络上的接口都是用什么做的?
如果已有的项目或者技术栈那就学着用。新项目不建议用,也不建议学,直接用 http api 就可以了,http api 不区分平台,不区分语言。
2016-11-09 20:13:13 +08:00
回复了 kier 创建的主题 Python 关于 python 写 log 的一个疑问
@kier
http://www.cnblogs.com/shizioo/p/python_logging_handler_custom.html
---
import logging
import os,os.path
import datetime

_filefmt=os.path.join("logs","%Y-%m-%d","%H.log")
class MyLoggerHandler(logging.Handler):
def __init__(self,filefmt=None):
self.filefmt=filefmt
if filefmt is None:
self.filefmt=_filefmt
logging.Handler.__init__(self)
def emit(self,record):
msg=self.format(record)
_filePath=datetime.datetime.now().strftime(self.filefmt)
_dir=os.path.dirname(_filePath)
try:
if os.path.exists(_dir) is False:
os.makedirs(_dir)
except Exception:
print "can not make dirs"
print "filepath is "+_filePath
pass
try:
_fobj=open(_filePath,'a')
_fobj.write(msg)
_fobj.write("\n")
_fobj.flush()
_fobj.close()
except Exception:
print "can not write to file"
print "filepath is "+_filePath
2016-08-15 20:54:59 +08:00
回复了 eightqueen 创建的主题 Java Java 工程配置太复杂了,我总结了一下个人经验
srping boot +1
2015-10-13 18:59:21 +08:00
回复了 eightqueen 创建的主题 Python python io 如何覆盖写?
fobj=open("filename","a")
fobj.write("msg")
fobj.flush()
fobj.close()
1  2  3  4  5  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3044 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 14:10 · PVG 22:10 · LAX 06:10 · JFK 09:10
Developed with CodeLauncher
♥ Do have faith in what you're doing.